Skip to content

Commit 17577fd

Browse files
committed
Fix failing test
1 parent 8439d6e commit 17577fd

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/test/java/com/amazon/ion/bytecode/bin10/TypeIdHelperTest.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ class TypeIdHelperTest {
176176
"0x20, INT",
177177
"0x2E, INT",
178178
"0x2F, INT",
179-
"0x30, UNSET",
180179
"0x31, INT",
181180
"0x3E, INT",
182181
"0x3F, INT",
@@ -208,7 +207,7 @@ class TypeIdHelperTest {
208207
"0xCE, SEXP",
209208
"0xCF, SEXP",
210209
"0xD0, STRUCT",
211-
"0xD1, UNSET",
210+
"0xD1, STRUCT",
212211
"0xDE, STRUCT",
213212
"0xDF, STRUCT",
214213
"0xE0, IVM",
@@ -230,8 +229,8 @@ class TypeIdHelperTest {
230229
"0x0F, 0", // NULL (length 0)
231230
"0x10, 0", // BOOL false (length 0)
232231
"0x11, 0", // BOOL true (length 0)
233-
"0x12, 2", // Length 2
234-
"0x1E, -1", // VarUInt follows
232+
"0x12, -2", // invalid
233+
"0x1E, -2", // invalid
235234
"0x1F, 0", // NULL (length 0)
236235
"0x20, 0", // Length 0
237236
"0x21, 1", // Length 1

0 commit comments

Comments
 (0)