Skip to content

Commit

Permalink
Extended UnitTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
nixon124 committed Nov 22, 2023
1 parent 41b15dc commit 86bcd51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/emissary/util/DisposeHelperTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;

class DisposeHelperTest {
class DisposeHelperTest extends UnitTest {

private static final Runnable FIRST = () -> LoggerFactory.getLogger("DisposeHelperRunnable").warn("DisposeHelperTestFirstRunnable");
private static final Runnable SECOND = () -> LoggerFactory.getLogger("DisposeHelperRunnable").warn("DisposeHelperTestSecondRunnable");
Expand All @@ -41,7 +41,7 @@ class DisposeHelperTest {

@BeforeAll
static void setupClass() {
UnitTest.setupSystemProperties();
setupSystemProperties();
}

@BeforeEach
Expand Down

0 comments on commit 86bcd51

Please sign in to comment.