Skip to content

Commit 32584a6

Browse files
committed
Fix test bug
1 parent 6abb673 commit 32584a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/snippets/stdlib_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# eq, ne
1818
a = array("b", [0, 1, 2, 3])
19-
b = a.copy()
19+
b = a
2020
assert a.__ne__(b) is False
2121
b = array("B", [3, 2, 1, 0])
2222
assert a.__ne__(b) is True

0 commit comments

Comments
 (0)