Tests: fixed port reusing to avoid access issues.

This commit is contained in:
Andrey Zelenkov
2019-08-14 15:53:58 +03:00
parent 4bef4256c0
commit ac316ff7a5
2 changed files with 2 additions and 2 deletions

View File

@@ -187,7 +187,7 @@ class TestPHPBasic(TestControl):
self.assertIn(
'success',
self.conf({"*:7080": {"pass": "applications/app"}}, 'listeners'),
self.conf({"*:7081": {"pass": "applications/app"}}, 'listeners'),
'applications restore',
)

View File

@@ -200,7 +200,7 @@ class TestPythonBasic(TestControl):
self.assertIn(
'success',
self.conf({"*:7080": {"pass": "applications/app"}}, 'listeners'),
self.conf({"*:7081": {"pass": "applications/app"}}, 'listeners'),
'applications restore',
)