Skip to content

Commit

Permalink
update test case that fails on 3.8 -> 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmccluskey committed Aug 27, 2024
1 parent 610b830 commit 6e6435e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def test_pretty_types(self):
expected_type_names = [('List[str]', True), ('numpy.int16', False),
('str', False), ('Dict[str, numpy.float64]', False),
('Dict[str, List[numpy.int64]]', True),
('Dict[int, Union[str, NoneType]]', False)]
('Dict[int, Optional[str]]', False)]

for i in range(len(types)):
self.assertEqual(
Expand Down

0 comments on commit 6e6435e

Please sign in to comment.