summaryrefslogtreecommitdiffhomepage
path: root/test/test_static_chroot.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_static_chroot.py')
-rw-r--r--test/test_static_chroot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_static_chroot.py b/test/test_static_chroot.py
index c5a35d82..812e14ea 100644
--- a/test/test_static_chroot.py
+++ b/test/test_static_chroot.py
@@ -74,14 +74,14 @@ class TestStaticChroot(TestApplicationProto):
assert self.get(url='/dir/file')['status'] == 200, 'chroot'
- def test_static_chroot_empty(self, temp_dir):
+ def test_static_chroot_empty(self):
assert 'success' in self.update_action('')
assert self.get(url='/dir/file')['status'] == 200, 'empty absolute'
assert 'success' in self.update_action("", ".$uri")
assert self.get(url=self.test_path)['status'] == 200, 'empty relative'
- def test_static_chroot_relative(self, is_su, temp_dir):
+ def test_static_chroot_relative(self, is_su):
if is_su:
pytest.skip("Does't work under root.")