FindByUsernameTests check if driver is null

Fixes gh-740
This commit is contained in:
Rob Winch
2017-03-03 09:53:39 -06:00
parent b3706addbb
commit b65423f296

View File

@@ -53,7 +53,9 @@ public class FindByUsernameTests {
@After
public void tearDown() {
this.driver.quit();
if (this.driver != null) {
this.driver.quit();
}
}
@Test