Skip to content

Commit

Permalink
Fix Junit4 remains
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 21, 2024
1 parent ebe8b8d commit c416d14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/java/tools/jackson/core/Base64VariantTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package tools.jackson.core;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import tools.jackson.core.util.BufferRecycler;
import tools.jackson.core.util.ByteArrayBuilder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import java.nio.charset.StandardCharsets;

import org.junit.Assert;

import tools.jackson.core.*;
import tools.jackson.core.base.GeneratorBase;
import tools.jackson.core.io.IOContext;
Expand All @@ -16,7 +14,7 @@ public class ByteArrayBuilderTest extends JUnit5TestBase
public void testSimple() throws Exception
{
ByteArrayBuilder b = new ByteArrayBuilder(null, 20);
Assert.assertArrayEquals(new byte[0], b.toByteArray());
assertArrayEquals(new byte[0], b.toByteArray());

b.write((byte) 0);
b.append(1);
Expand Down

0 comments on commit c416d14

Please sign in to comment.