Skip to content

Commit

Permalink
fix test, old console is gone
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Mar 15, 2016
1 parent aa404f6 commit e988bbb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e988bbb

Please sign in to comment.