Skip to content

Commit 616f5ab

Browse files
committed
unmark passing tests
1 parent 0c31c5f commit 616f5ab

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

Lib/test/test_genericalias.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,6 @@ class MyType(type):
275275
with self.assertRaises(TypeError):
276276
MyType[int]
277277

278-
# TODO: RUSTPYTHON
279-
@unittest.expectedFailure
280278
def test_pickle(self):
281279
alias = GenericAlias(list, T)
282280
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
@@ -286,8 +284,6 @@ def test_pickle(self):
286284
self.assertEqual(loaded.__args__, alias.__args__)
287285
self.assertEqual(loaded.__parameters__, alias.__parameters__)
288286

289-
# TODO: RUSTPYTHON
290-
@unittest.expectedFailure
291287
def test_copy(self):
292288
class X(list):
293289
def __copy__(self):

Lib/test/test_types.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -877,8 +877,6 @@ def eq(actual, expected, typed=True):
877877
eq(x[NT], int | NT | bytes)
878878
eq(x[S], int | S | bytes)
879879

880-
# TODO: RUSTPYTHON
881-
@unittest.expectedFailure
882880
def test_union_pickle(self):
883881
orig = list[T] | int
884882
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
@@ -888,8 +886,6 @@ def test_union_pickle(self):
888886
self.assertEqual(loaded.__args__, orig.__args__)
889887
self.assertEqual(loaded.__parameters__, orig.__parameters__)
890888

891-
# TODO: RUSTPYTHON
892-
@unittest.expectedFailure
893889
def test_union_copy(self):
894890
orig = list[T] | int
895891
for copied in (copy.copy(orig), copy.deepcopy(orig)):

0 commit comments

Comments
 (0)