aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_integration.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r--tests/test_integration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py
index 01fa657..91b01e6 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -79,11 +79,11 @@ class IntegrationTests(unittest.TestCase):
from mod import lib
print(lib.var)
- with open('output/test.txt', 'w') as f:
+ with open('test.txt', 'w') as f:
f.write('test 1')
- Path('output/dir').mkdir()
- Path('output/dir/test2.txt').write_text('test 2')
+ Path('dir').mkdir()
+ Path('dir/test2.txt').write_text('test 2')
"""
),
},