From e545351059ac27d8bc7a37e91985e267cc607cb8 Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Fri, 19 Jul 2024 10:53:16 +0200 Subject: [PATCH] Fix test --- tests/test_io.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_io.py b/tests/test_io.py index 0c70bc3..49a08fd 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -1554,8 +1554,10 @@ def test_script_dir(tmpdir): """ expected_script_dir = os.path.dirname(os.path.realpath(__file__)) assert audeer.script_dir() == expected_script_dir + current_dir = os.getcwd() os.chdir(tmpdir) assert audeer.script_dir() == expected_script_dir + os.chdir(current_dir) def test_touch(tmpdir):