Skip to content

Commit

Permalink
AList
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrinneal committed Mar 29, 2024
1 parent 01444d0 commit 6b224fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void compareAllTypes(AllTypes firstTypes, AllTypes secondTypes) {
assertArrayEquals(firstTypes.getA4ByteArray(), secondTypes.getA4ByteArray());
assertArrayEquals(firstTypes.getA8ByteArray(), secondTypes.getA8ByteArray());
assertTrue(floatArraysEqual(firstTypes.getAFloatArray(), secondTypes.getAFloatArray()));
assertArrayEquals(firstTypes.getAList().toArray(), secondTypes.getAList().toArray());
assertArrayEquals(firstTypes.getList().toArray(), secondTypes.getList().toArray());
assertArrayEquals(
firstTypes.getAMap().keySet().toArray(), secondTypes.getAMap().keySet().toArray());
assertArrayEquals(
Expand Down Expand Up @@ -154,7 +154,7 @@ public void hasValues() {
.setA4ByteArray(new int[] {1, 2, 3, 4})
.setA8ByteArray(new long[] {1, 2, 3, 4})
.setAFloatArray(new double[] {0.5, 0.25, 1.5, 1.25})
.setAList(Arrays.asList(new int[] {1, 2, 3}))
.setList(Arrays.asList(new int[] {1, 2, 3}))
.setAMap(makeMap("hello", 1234))
.setAnEnum(CoreTests.AnEnum.ONE)
.setAnObject(0)
Expand Down

0 comments on commit 6b224fe

Please sign in to comment.