Skip to content

Commit ce3aa21

Browse files
committed
Minor renaming wrt assigned OSS-Fuzz issue id
1 parent 8b1fcd5 commit ce3aa21

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
+5-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
import static org.hamcrest.MatcherAssert.assertThat;
1212
import static org.junit.Assert.fail;
1313

14-
// [dataformats-binary#469]: Similar to OSS-Fuzz#66077 (but not necessarily same)
15-
public class IonFuzz_469_66077_NegArraySizeTest
14+
// [dataformats-binary#469]: NegativeArraySizeException
15+
// https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=66141
16+
public class IonFuzz_469_66149_NegArraySizeTest
1617
{
1718
private final ObjectMapper ION_MAPPER = new IonObjectMapper();
1819

1920
@Test
20-
public void testFuzz66077_NegativeArraySize() throws Exception {
21-
final byte[] doc = IonFuzzTestUtil.readResource("/data/fuzz-66077.ion");
21+
public void testFuzz66149_NegativeArraySize() throws Exception {
22+
final byte[] doc = IonFuzzTestUtil.readResource("/data/fuzz-66149.ion");
2223
try {
2324
ION_MAPPER.readTree(doc);
2425
fail("Should not pass (invalid content)");

ion/src/test/java/com/fasterxml/jackson/dataformat/ion/failing/IonFuzz_471_66141_AssertionErrorTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class IonFuzz_471_66141_AssertionErrorTest
1818
private final ObjectMapper ION_MAPPER = new IonObjectMapper();
1919

2020
@Test
21-
public void testFuzz66077_NegativeArraySize() throws Exception {
21+
public void testFuzz66077_AssertionError() throws Exception {
2222
final byte[] doc = IonFuzzTestUtil.readResource("/data/fuzz-66141.ion");
2323
try {
2424
ION_MAPPER.readValue(doc, java.util.Date.class);

0 commit comments

Comments
 (0)