Skip to content

Commit

Permalink
fix java
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashleyhx committed Sep 29, 2023
1 parent 8414142 commit 8ce42fa
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tools/java_api/src/test/java/com/kuzudb/test/ValueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,6 @@ void ValueCreateBool() throws KuzuObjectRefDestroyedException {
value.destroy();
}

@Test
void ValueCreateINT8() throws KuzuObjectRefDestroyedException {
// INT8
KuzuValue value = new KuzuValue((byte) 42);
assertFalse(value.isOwnedByCPP());
assertEquals(value.getDataType().getID(), KuzuDataTypeID.INT8);
assertTrue(value.getValue().equals((byte) 42));
value.destroy();
}

@Test
void ValueCreateINT16() throws KuzuObjectRefDestroyedException {
// INT16
Expand Down

0 comments on commit 8ce42fa

Please sign in to comment.