summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-20 21:44:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-11-20 21:44:23 (GMT)
commitd3b5a7985d81fd28fe970ab5d7429fa57e723e2c (patch)
tree6b24c9b90a8d6d50e739bc0ca24c92c067025110 /Lib/test
parent050f4adcb485a11b33f4b54e60e58bf1ae9a6117 (diff)
downloadcpython-d3b5a7985d81fd28fe970ab5d7429fa57e723e2c.zip
cpython-d3b5a7985d81fd28fe970ab5d7429fa57e723e2c.tar.gz
cpython-d3b5a7985d81fd28fe970ab5d7429fa57e723e2c.tar.bz2
oops! didn't mean to disable that test
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_bytes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 6e5ffa9..45df1f3 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'')