Skip to content

Commit

Permalink
Remove public modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap authored Aug 30, 2023
1 parent fd7b08c commit 6f6f384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/mytests/tests/TestsInit.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
@Listeners(TestNGListener.class)
public interface TestsInit {
@BeforeSuite(alwaysRun = true)
public default void setUp() {
default void setUp() {
openSite(SiteJdi.class);
logger.info("Run Tests");
}

@AfterSuite(alwaysRun = true)
public default void teardown() {
default void teardown() {
killAllSeleniumDrivers();
}
}

0 comments on commit 6f6f384

Please sign in to comment.