diff --git a/conformance/tests/constructors_callable.py b/conformance/tests/constructors_callable.py index 7ad04dcb..bfd1e405 100644 --- a/conformance/tests/constructors_callable.py +++ b/conformance/tests/constructors_callable.py @@ -179,7 +179,7 @@ def __new__(cls, x: list[T], y: list[T]) -> Self: r8 = accepts_callable(Class8) -reveal_type(r8) # `def [T] (x: T, y: list[T]) -> Class8[T]` +reveal_type(r8) # `def [T] (x: list[T], y: list[T]) -> Class8[T]` assert_type(r8([""], [""]), Class8[str]) r8([1], [""]) # E