From e988bbb55d3fa6710c69fb83a92193f6a88cafcb Mon Sep 17 00:00:00 2001 From: Luke Inman-Semerau Date: Tue, 15 Mar 2016 15:54:11 -0700 Subject: [PATCH] fix test, old console is gone --- .../test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/server/test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java b/java/server/test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java index 9cd6af63febaa..08026a67eec57 100644 --- a/java/server/test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java +++ b/java/server/test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java @@ -68,7 +68,7 @@ public static void prepare() throws Exception { hubURL = hub.getUrl(); driverURL = new URL(hubURL + "/grid/driver"); - consoleURL = new URL(hubURL + "/grid/old/console"); + consoleURL = new URL(hubURL + "/grid/console"); // assigning a priority rule where requests with the flag "important" go first. registry.getConfiguration().prioritizer = new Prioritizer() { @@ -209,7 +209,7 @@ public void test5ValidateStateAndPickTheImportantOne() throws InterruptedExcepti // simple helper static private void visitHubConsole(WebDriver driver) { driver.get(consoleURL.toString()); - assertEquals(driver.getTitle(), "Grid overview"); + assertEquals(driver.getTitle(), "Grid Console"); } @AfterClass