Skip to content

Commit 66b046b

Browse files
update tests
1 parent f185c29 commit 66b046b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

mypy/test/testtypes.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,7 @@ def test_any_type(self) -> None:
806806
self.fx.anyt,
807807
self.fx.a,
808808
self.fx.o,
809-
# TODO: fix this is not currently symmetric
810-
# NoneType(),
809+
NoneType(),
811810
UnboundType("x"),
812811
self.fx.t,
813812
self.tuple(),
@@ -1177,8 +1176,7 @@ def test_none(self) -> None:
11771176
self.assert_meet(self.fx.o, NoneType(), NoneType())
11781177
for t in [
11791178
self.fx.a,
1180-
# TODO: fix this is not currently symmetric
1181-
# UnboundType("x"),
1179+
UnboundType("x"),
11821180
self.fx.t,
11831181
self.tuple(),
11841182
self.callable(self.fx.a, self.fx.b),

0 commit comments

Comments
 (0)