Skip to content

Commit

Permalink
test:Made a unit test more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Mar 3, 2015
1 parent 403003d commit b3d38fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class WhenMonitoringWebDriverTimeoutOptions extends Specification {
given:
def driver = new WebDriverFacade(HtmlUnitDriver.class, webDriverFactory)
when:
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS)
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS)
then:
driver.implicitTimeoutValue == 10
driver.implicitTimeoutValue == 30
driver.implicitTimeoutUnit == TimeUnit.SECONDS
}
}

0 comments on commit b3d38fb

Please sign in to comment.