summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/acceptance_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py
index 712776906..8a8c32762 100644
--- a/testing/acceptance_test.py
+++ b/testing/acceptance_test.py
@@ -624,8 +624,10 @@ class TestInvocationVariants(object):
for p in search_path:
monkeypatch.syspath_prepend(p)
+ os.chdir('world')
# mixed module and filenames:
- result = testdir.runpytest("--pyargs", "-v", "ns_pkg.hello", "world/ns_pkg")
+ result = testdir.runpytest("--pyargs", "-v", "ns_pkg.hello", "ns_pkg/world")
+ testdir.chdir()
assert result.ret == 0
result.stdout.fnmatch_lines([
"*test_hello.py::test_hello*PASSED",