Skip to content

Commit 8fb5b25

Browse files
author
michele
committed
fixed test with valid vpack
1 parent 543f244 commit 8fb5b25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/arangodb/velocypack/VPackSliceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ public void objectEmptyGet() throws VPackException {
952952
@Test
953953
public void objectSingleEntryString() throws VPackException {
954954
// {"a":"b"}
955-
final VPackSlice slice = new VPackSlice(new byte[] { 0x0b, 0x07, 0x01, 0x41, 0x61, 0x41, 0x62 });
955+
final VPackSlice slice = new VPackSlice(new byte[] { 0x0b, 0x08, 0x01, 0x41, 0x61, 0x41, 0x62, 0x03 });
956956
final VPackSlice sliceNone = slice.get("abc");
957957
assertThat(sliceNone.isNone(), is(true));
958958
final VPackSlice sliceA = slice.get("a");

0 commit comments

Comments
 (0)