Change another network name

This commit is contained in:
Ana Gelez 2020-08-10 17:06:14 +02:00
parent 7c456009be
commit 4c6fb83793
2 changed files with 3 additions and 2 deletions

View File

@ -151,7 +151,7 @@ local Integration(db) = basePipeline(
detach: true,
},
{
name: "integration-" + db,
name: "integration",
image: plumeEnv,
environment: {
BROWSER: "firefox",

View File

@ -20,4 +20,5 @@ class Browser(unittest.TestCase):
self.driver.close()
def get(self, url):
return self.driver.get("https://localhost" + url)
# Like "selenium", integration is mapped to the container that runs the plume instance
return self.driver.get("https://integration" + url)