Skip to content

Commit

Permalink
pr updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed Oct 7, 2023
1 parent 472f7da commit b85d652
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/test/java/emissary/core/channels/ChannelTestHelper.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package emissary.core.channels;

import emissary.test.core.junit5.UnitTest;

import org.apache.commons.io.IOUtils;

import java.io.IOException;
Expand All @@ -12,7 +10,7 @@
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;

public class ChannelTestHelper extends UnitTest {
public class ChannelTestHelper {
private ChannelTestHelper() {};

public static void checkByteArrayAgainstSbc(final byte[] bytesToVerify, final SeekableByteChannelFactory sbcf)
Expand Down
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 @@ -21,7 +21,7 @@
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;

class DisposeHelperTest extends UnitTest {
class DisposeHelperTest {

private static final Runnable FIRST = () -> LoggerFactory.getLogger("DisposeHelperRunnable").warn("DisposeHelperTestFirstRunnable");
private static final Runnable SECOND = () -> LoggerFactory.getLogger("DisposeHelperRunnable").warn("DisposeHelperTestSecondRunnable");
Expand All @@ -48,7 +48,7 @@ void setup() {
}

@AfterEach
public void tearDown() {
void detach() {
logger.detachAppender(appender);
rLogger.detachAppender(appender);
}
Expand Down

0 comments on commit b85d652

Please sign in to comment.