Skip to content

Commit e988bbb

Browse files
committed
fix test, old console is gone
1 parent aa404f6 commit e988bbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/server/test/org/openqa/grid/e2e/misc/WebDriverPriorityDemo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static void prepare() throws Exception {
6868

6969
hubURL = hub.getUrl();
7070
driverURL = new URL(hubURL + "/grid/driver");
71-
consoleURL = new URL(hubURL + "/grid/old/console");
71+
consoleURL = new URL(hubURL + "/grid/console");
7272

7373
// assigning a priority rule where requests with the flag "important" go first.
7474
registry.getConfiguration().prioritizer = new Prioritizer() {
@@ -209,7 +209,7 @@ public void test5ValidateStateAndPickTheImportantOne() throws InterruptedExcepti
209209
// simple helper
210210
static private void visitHubConsole(WebDriver driver) {
211211
driver.get(consoleURL.toString());
212-
assertEquals(driver.getTitle(), "Grid overview");
212+
assertEquals(driver.getTitle(), "Grid Console");
213213
}
214214

215215
@AfterClass

0 commit comments

Comments
 (0)