Commit d3b5a798 authored by Benjamin Peterson's avatar Benjamin Peterson

oops! didn't mean to disable that test

parent 050f4adc
...@@ -725,7 +725,7 @@ class ByteArrayTest(BaseBytesTest): ...@@ -725,7 +725,7 @@ class ByteArrayTest(BaseBytesTest):
# Issue 4348. Make sure that operations that don't mutate the array # Issue 4348. Make sure that operations that don't mutate the array
# copy the bytes. # copy the bytes.
b = bytearray(b'abc') b = bytearray(b'abc')
#self.assertFalse(b is b.replace(b'abc', b'cde', 0)) self.assertFalse(b is b.replace(b'abc', b'cde', 0))
t = bytearray([i for i in range(256)]) t = bytearray([i for i in range(256)])
x = bytearray(b'') x = bytearray(b'')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment