diff --git a/test-data/unit/check-varargs.test b/test-data/unit/check-varargs.test index ac68e20028a7..f127a12b22a9 100644 --- a/test-data/unit/check-varargs.test +++ b/test-data/unit/check-varargs.test @@ -955,7 +955,7 @@ class SubGood(Base): class SubBad(Base): def foo(self, **kwargs: Unpack[Unrelated]) -> None: ... # E: Signature of "foo" incompatible with supertype "Base" \ # N: Superclass: \ - # N: def foo(*, name: str, age: int) -> None \ + # N: def foo(self, *, name: str, age: int) -> None \ # N: Subclass: \ # N: def foo(self, *, baz: int) -> None [builtins fixtures/dict.pyi]