mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 04:48:16 +00:00
test fixed
This commit is contained in:
@@ -103,7 +103,7 @@ public class ABCStreamTest {
|
||||
for (long number : getTestNumebers(-(1L << 31), (1 << 31) - 1)) {
|
||||
try (ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
ABCOutputStream aos = new ABCOutputStream(baos);) {
|
||||
aos.writeU32(number);
|
||||
aos.writeS32(number);
|
||||
aos.close();
|
||||
try (MemoryInputStream mis = new MemoryInputStream(baos.toByteArray());
|
||||
ABCInputStream ais = new ABCInputStream(mis);) {
|
||||
|
||||
Reference in New Issue
Block a user