Skip to content

Commit

Permalink
Remove In class foo
Browse files Browse the repository at this point in the history
  • Loading branch information
sixolet committed Dec 10, 2016
1 parent 21e96a2 commit 16cf426
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions test-data/unit/check-functions.test
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ class B(A):
class C(A):
def f(self, *, b: int, a: str) -> None: pass # E: Signature of "f" incompatible with supertype "A"

[out]
main: note: In class "C":

[case testPositionalOverridingArgumentNameInsensitivity]
import typing

Expand All @@ -48,8 +45,6 @@ class B(A):
class C(A):
def f(self, foo: int, bar: str) -> None: pass

[out]
main: note: In class "B":

[case testPositionalOverridingArgumentNamesCheckedWhenMismatchingPos]
import typing
Expand All @@ -60,8 +55,6 @@ class A(object):
class B(A):
def f(self, b: int, a: str) -> None: pass # E: Signature of "f" incompatible with supertype "A"

[out]
main: note: In class "B":

[case testSubtypingFunctionTypes]
from typing import Callable
Expand Down

0 comments on commit 16cf426

Please sign in to comment.