From 443326433e33ff7062f209900740c172a689c834 Mon Sep 17 00:00:00 2001 From: Joshua Barr <70981087+jobarr-amzn@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:21:44 -0800 Subject: [PATCH] Fix test name and doc comments (#716) --- .../com/amazon/ion/impl/IonCursorBinaryTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test/java/com/amazon/ion/impl/IonCursorBinaryTest.java b/src/test/java/com/amazon/ion/impl/IonCursorBinaryTest.java index 734d152b57..581289a78e 100644 --- a/src/test/java/com/amazon/ion/impl/IonCursorBinaryTest.java +++ b/src/test/java/com/amazon/ion/impl/IonCursorBinaryTest.java @@ -402,12 +402,12 @@ public void expectMissingAnnotationWrapperAnnotationLengthToFailCleanly() { } @Test - public void expectValueLargerThanIntMaxToFailCleanly() { - int[] data = new int[] { - 0xE0, 0x01, 0x00, 0xEA, - 0x2E, // Integer with VarUInt length, because that's clearly a reasonable thing to find - 0x07, 0x7f, 0x7f, 0x7f, 0xf9 // VarUInt length 2147483647 (Integer.MAX_LENGTH) - }; + public void expectValueLargerThanMaxArraySizeToFailCleanly() { + int[] data = new int[]{ + 0xE0, 0x01, 0x00, 0xEA, // Ion 1.0 IVM + 0x2E, // Int with VarUInt length, 6 bytes total + 0x07, 0x7f, 0x7f, 0x7f, 0xf9 // VarUInt length (Integer.MAX_LENGTH - 6) + }; // Because that's clearly a reasonable thing to find ByteArrayInputStream in = new ByteArrayInputStream(bytes(data)); // We need a custom initial buffer size so that the cursor doesn't know there are fewer bytes remaining