Skip to content

Commit

Permalink
AVRO-3886: remove useless comments
Browse files Browse the repository at this point in the history
  • Loading branch information
clesaec committed Oct 5, 2023
1 parent b4ce6ad commit 82d753b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ void arrayObjectProp() {
assertEquals(true, iter.next());
assertEquals(Integer.MAX_VALUE, iter.next());
assertEquals(Long.MAX_VALUE, iter.next());
// float converts to double

assertEquals(1.0f, iter.next());
assertEquals(Double.MAX_VALUE, iter.next());
// byte[] converts to string

assertArrayEquals(new byte[] { 0x41, 0x42, 0x43 }, (byte[]) iter.next());
assertEquals("abc", iter.next());
}
Expand Down

0 comments on commit 82d753b

Please sign in to comment.