Tests: fixed unit.log print.
This commit is contained in:
@@ -4,6 +4,7 @@ from distutils.version import LooseVersion
|
||||
|
||||
import pytest
|
||||
|
||||
from conftest import option
|
||||
from conftest import skip_alert
|
||||
from unit.applications.lang.python import TestApplicationPython
|
||||
|
||||
@@ -14,7 +15,7 @@ class TestASGIApplication(TestApplicationPython):
|
||||
load_module = 'asgi'
|
||||
|
||||
def findall(self, pattern):
|
||||
with open(self.temp_dir + '/unit.log', 'r', errors='ignore') as f:
|
||||
with open(option.temp_dir + '/unit.log', 'r', errors='ignore') as f:
|
||||
return re.findall(pattern, f.read())
|
||||
|
||||
def test_asgi_application_variables(self):
|
||||
|
||||
Reference in New Issue
Block a user