diff --git a/ibis/common/tests/test_annotations.py b/ibis/common/tests/test_annotations.py index 6e4a22f3d24d..ab214bc35170 100644 --- a/ibis/common/tests/test_annotations.py +++ b/ibis/common/tests/test_annotations.py @@ -80,14 +80,6 @@ def test_annotations_are_not_hashable(): hash(a) -def test_argument_repr(): - argument = Argument(is_int, typehint=int, default=None) - assert repr(argument) == ( - "Argument(pattern=InstanceOf(type=), default=None, " - "typehint=, kind=<_ParameterKind.POSITIONAL_OR_KEYWORD: 1>)" - ) - - def test_default_argument(): annotation = Argument(pattern=lambda x, context: int(x), default=3) assert annotation.pattern.match(1, {}) == 1