summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--test/test_access_log.py2
-rw-r--r--test/test_ruby_isolation.py4
-rw-r--r--test/test_variables.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/test/test_access_log.py b/test/test_access_log.py
index 86afb628..12f62aa9 100644
--- a/test/test_access_log.py
+++ b/test/test_access_log.py
@@ -291,7 +291,7 @@ Connection: close
skip_alert(r'failed to apply new conf')
assert 'error' in self.conf(
- f'{option.temp_dir}/blah/access.log',
+ f'{temp_dir}/blah/access.log',
'access_log/path',
), 'access_log path incorrect'
diff --git a/test/test_ruby_isolation.py b/test/test_ruby_isolation.py
index ea208523..3ec06d86 100644
--- a/test/test_ruby_isolation.py
+++ b/test/test_ruby_isolation.py
@@ -6,7 +6,7 @@ from unit.option import option
class TestRubyIsolation(TestApplicationRuby):
prerequisites = {'modules': {'ruby': 'any'}, 'features': ['isolation']}
- def test_ruby_isolation_rootfs(self, is_su):
+ def test_ruby_isolation_rootfs(self, is_su, temp_dir):
isolation_features = option.available['features']['isolation'].keys()
if not is_su:
@@ -22,7 +22,7 @@ class TestRubyIsolation(TestApplicationRuby):
if 'pid' not in isolation_features:
pytest.skip('pid namespace is not supported')
- isolation = {'rootfs': option.temp_dir}
+ isolation = {'rootfs': temp_dir}
if not is_su:
isolation['namespaces'] = {
diff --git a/test/test_variables.py b/test/test_variables.py
index 4b924147..970ad7b0 100644
--- a/test/test_variables.py
+++ b/test/test_variables.py
@@ -366,11 +366,11 @@ Connection: close
check_no_cookie('fOo_bar=0')
check_no_cookie('foo_bar=')
- def test_variables_invalid(self):
+ def test_variables_invalid(self, temp_dir):
def check_variables(format):
assert 'error' in self.conf(
{
- 'path': f'{option.temp_dir}/access.log',
+ 'path': f'{temp_dir}/access.log',
'format': format,
},
'access_log',