From 3e4fa1e2022970dee003bea0932ea0c10f8744ba Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 25 May 2023 14:26:12 +0100 Subject: Tests: removed unused variables. --- test/test_python_isolation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_python_isolation.py') diff --git a/test/test_python_isolation.py b/test/test_python_isolation.py index c524aea0..35ca4a56 100644 --- a/test/test_python_isolation.py +++ b/test/test_python_isolation.py @@ -125,7 +125,7 @@ class TestPythonIsolation(TestApplicationPython): self.getjson(url='/?path=/proc/self')['body']['FileExists'] == True ), '/proc/self' - def test_python_isolation_cgroup(self, is_su, temp_dir): + def test_python_isolation_cgroup(self, is_su): if not is_su: pytest.skip('requires root') @@ -148,7 +148,7 @@ class TestPythonIsolation(TestApplicationPython): assert len(cgroup_rel.parts) >= len(cgroup_abs.parts) - def test_python_isolation_cgroup_two(self, is_su, temp_dir): + def test_python_isolation_cgroup_two(self, is_su): if not is_su: pytest.skip('requires root') -- cgit