rdblue commented on code in PR #5116:
URL: https://github.com/apache/iceberg/pull/5116#discussion_r907854717
##########
python/tests/avro/test_decoder.py:
##########
@@ -33,10 +33,10 @@ def test_read_decimal_from_fixed():
assert actual == expected
-def test_read_long():
+def test_read_int():
mis = MemoryInputStream(b"\x18")
decoder = BinaryDecoder(mis)
- assert decoder.read_long() == 12
+ assert decoder.read_int() == 12
Review Comment:
Do you want to add a few tests for the new `skip` methods?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]