Skip to content

Commit

Permalink
GEODE-2201 Spotless fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeppe-pivotal committed Dec 12, 2016
1 parent df8730d commit 0f8ef97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static WebElement waitForElementWithId(String id) {

public static WebElement waitForElement(By by) {
WebElement element = (new WebDriverWait(driverProvider.get(), maxWaitTime))
.until((ExpectedCondition<WebElement>) d -> d.findElement(by));
.until((ExpectedCondition<WebElement>) d -> d.findElement(by));
assertNotNull(element);
return element;
}
Expand Down

0 comments on commit 0f8ef97

Please sign in to comment.