Skip to content

Commit

Permalink
[java] Renaming a test setup method to prevent overriding a method wi…
Browse files Browse the repository at this point in the history
…th the same name in the base class
  • Loading branch information
barancev committed Sep 18, 2019
1 parent 0479dc6 commit 437cca6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public abstract class ChromeDevToolsTestBase extends DevToolsTestBase {
protected ChromeDriver chromeDriver;

@Before
public void setUp() {
public void setUpChrome() {
assumeThat(driver).isInstanceOf(ChromeDriver.class);

chromeDriver = (ChromeDriver) driver;
Expand Down

0 comments on commit 437cca6

Please sign in to comment.