rubenvdg commented on code in PR #6462:
URL: https://github.com/apache/iceberg/pull/6462#discussion_r1053649095


##########
python/tests/expressions/test_literals.py:
##########
@@ -89,12 +89,19 @@ def test_literal_from_none_error() -> None:
         BinaryLiteral,
     ],
 )
-def test_string_literal_with_none_value_error(literal_class: 
Type[PrimitiveType]) -> None:
+def test_literal_classes_with_none_type_error(literal_class: 
Type[PrimitiveType]) -> None:
     with pytest.raises(TypeError) as e:
         literal_class(None)
     assert "Invalid literal value: None" in str(e.value)
 
 
[email protected]("literal_class", [FloatLiteral, DoubleLiteral])

Review Comment:
   Done!



-- 
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]

Reply via email to