tests - fix domains for SwarmTest

This commit is contained in:
bunkerity 2022-07-15 09:19:02 +02:00
parent 3780477940
commit abc500a4d4
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 5 additions and 5 deletions

View File

@ -12,11 +12,11 @@ class SwarmTest(Test) :
def __init__(self, name, timeout, tests) :
super().__init__(name, "swarm", timeout, tests)
self._domains = {
r"www\.example\.com": getenv("TEST_DOMAIN1"),
r"auth\.example\.com": getenv("TEST_DOMAIN1"),
r"app1\.example\.com": getenv("TEST_DOMAIN1"),
r"app2\.example\.com": getenv("TEST_DOMAIN2"),
r"app3\.example\.com": getenv("TEST_DOMAIN3")
r"www\.example\.com": getenv("TEST_DOMAIN2"),
r"auth\.example\.com": getenv("TEST_DOMAIN3"),
r"app1\.example\.com": getenv("TEST_DOMAIN2"),
r"app2\.example\.com": getenv("TEST_DOMAIN3"),
r"app3\.example\.com": getenv("TEST_DOMAIN2")
}
def init() :