oops! didn't mean to disable that test

This commit is contained in:
Benjamin Peterson 2008-11-20 21:44:23 +00:00
parent 050f4adcb4
commit d3b5a7985d
1 changed files with 1 additions and 1 deletions

View File

@ -725,7 +725,7 @@ class ByteArrayTest(BaseBytesTest):
# Issue 4348. Make sure that operations that don't mutate the array
# copy the bytes.
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)])
x = bytearray(b'')