From: Benjamin Peterson Date: Thu, 20 Nov 2008 21:44:23 +0000 (+0000) Subject: oops! didn't mean to disable that test X-Git-Tag: v2.7a1~2644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3b5a7985d81fd28fe970ab5d7429fa57e723e2c;p=thirdparty%2FPython%2Fcpython.git oops! didn't mean to disable that test --- diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 6e5ffa9fa207..45df1f34b5ff 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -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'')