diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-11-04 19:53:50 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-11-04 19:53:50 (GMT) |
commit | b716f84880fb719be417e9b49f8bb55bfd0106b8 (patch) | |
tree | 9162d63c29f5257d4cb7a25b0cfdc609a4ab12e1 /Lib/test | |
parent | 3bb516bae2381e0797beb0db108835b50b9129de (diff) | |
download | cpython-b716f84880fb719be417e9b49f8bb55bfd0106b8.zip cpython-b716f84880fb719be417e9b49f8bb55bfd0106b8.tar.gz cpython-b716f84880fb719be417e9b49f8bb55bfd0106b8.tar.bz2 |
Fix copy&paste errors and reformulate the tests.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_buffer.py | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/Lib/test/test_buffer.py b/Lib/test/test_buffer.py index 977b282..747e2a2 100644 --- a/Lib/test/test_buffer.py +++ b/Lib/test/test_buffer.py @@ -4001,23 +4001,13 @@ class TestBufferProtocol(unittest.TestCase): # equality-hash invariant x = ndarray(list(range(12)), shape=[12], format='B') - a = memoryview(nd) + a = memoryview(x) y = ndarray(list(range(12)), shape=[12], format='b') - b = memoryview(nd) + b = memoryview(y) - z = ndarray(list(bytes(chr(x), 'latin-1') for x in range(12)), - shape=[12], format='c') - c = memoryview(nd) - - if (a == b): - self.assertEqual(hash(a), hash(b)) - - if (a == c): - self.assertEqual(hash(a), hash(c)) - - if (b == c): - self.assertEqual(hash(b), hash(c)) + self.assertEqual(a, b) + self.assertEqual(hash(a), hash(b)) # non-byte formats nd = ndarray(list(range(12)), shape=[2,2,3], format='L') |