From a443a0b34cac973bcd01add6eaaf7dfb13f11896 Mon Sep 17 00:00:00 2001 From: Hyunmin Shin Date: Tue, 2 Aug 2022 02:18:26 +0900 Subject: [PATCH] Update test_types.py --- Lib/test/test_types.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 6da9fe5ce..1d7d709d8 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -637,8 +637,6 @@ class TypesTests(unittest.TestCase): class UnionTests(unittest.TestCase): - # TODO: RUSTPYTHON - @unittest.expectedFailure def test_or_types_operator(self): self.assertEqual(int | str, typing.Union[int, str]) self.assertNotEqual(int | list, typing.Union[int, str])