Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jul 19, 2024
1 parent 787f907 commit e545351
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e545351

Please sign in to comment.