Skip to content

Commit d1f946e

Browse files
authored
Remove test
1 parent eb73b21 commit d1f946e

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

mypyc/test-data/run-lists.test

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -51,34 +51,6 @@ print(2, a)
5151
1 [-1, 5]
5252
2 [340282366920938463463374607431768211461, -170141183460469231731687303715884105736]
5353

54-
[case testListCopy]
55-
from typing import List
56-
def test_list_copy() -> None:
57-
l1 = [1, 2, 3, -4, 5]
58-
l2 = l1.copy()
59-
assert l1.copy() == l1
60-
assert l1.copy() == l2
61-
assert l1 == l2
62-
assert l1.copy() == l2.copy()
63-
l1 = l2.copy()
64-
assert l1 == l2
65-
assert l1.copy() == l2
66-
assert l1 == [1, 2, 3, -4, 5]
67-
l2 = [1, 2, -3]
68-
l1 = []
69-
assert l1.copy() == []
70-
assert l2.copy() != l1
71-
assert l2 == l2.copy()
72-
l1 = l2
73-
assert l1.copy().copy() == l2.copy().copy().copy()
74-
assert l1.copy() == l2.copy()
75-
l1 == [1, 2, -3].copy()
76-
assert l1 == l2
77-
l2 = [1, 2, 3].copy()
78-
assert l2 != l1
79-
l1 = [1, 2, 3]
80-
assert l1.copy() == l2.copy()
81-
8254
[case testSieve]
8355
from typing import List
8456

0 commit comments

Comments
 (0)