]> granicus.if.org Git - python/commitdiff
oops! didn't mean to disable that test
authorBenjamin Peterson <benjamin@python.org>
Thu, 20 Nov 2008 21:44:23 +0000 (21:44 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 20 Nov 2008 21:44:23 +0000 (21:44 +0000)
Lib/test/test_bytes.py

index 6e5ffa9fa2075d0e469f0225b5b1a2fee6038df1..45df1f34b5ff6c616c0f6a372fd2a875649295e7 100644 (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'')