summaryrefslogtreecommitdiff
path: root/tests/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index 262d9301..daed3d1a 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -240,7 +240,7 @@ def change_dir(new_dir):
"""
old_dir = os.getcwd()
- os.chdir(new_dir)
+ os.chdir(str(new_dir))
try:
yield
finally: