Skip to content

Commit f9a4698

Browse files
committed
Get rid of semicolons in bloom tests
Cut-n-paste error? Weird, where'd they come from?
1 parent 6fd1990 commit f9a4698

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

bitcoin/tests/test_bloom.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ def test(self):
2424
def T(expected, seed, data):
2525
self.assertEqual(MurmurHash3(seed, x(data)), expected)
2626

27-
T(0x00000000, 0x00000000, "");
28-
T(0x6a396f08, 0xFBA4C795, "");
29-
T(0x81f16f39, 0xffffffff, "");
30-
31-
T(0x514e28b7, 0x00000000, "00");
32-
T(0xea3f0b17, 0xFBA4C795, "00");
33-
T(0xfd6cf10d, 0x00000000, "ff");
34-
35-
T(0x16c6b7ab, 0x00000000, "0011");
36-
T(0x8eb51c3d, 0x00000000, "001122");
37-
T(0xb4471bf8, 0x00000000, "00112233");
38-
T(0xe2301fa8, 0x00000000, "0011223344");
39-
T(0xfc2e4a15, 0x00000000, "001122334455");
40-
T(0xb074502c, 0x00000000, "00112233445566");
41-
T(0x8034d2a0, 0x00000000, "0011223344556677");
42-
T(0xb4698def, 0x00000000, "001122334455667788");
27+
T(0x00000000, 0x00000000, "")
28+
T(0x6a396f08, 0xFBA4C795, "")
29+
T(0x81f16f39, 0xffffffff, "")
30+
31+
T(0x514e28b7, 0x00000000, "00")
32+
T(0xea3f0b17, 0xFBA4C795, "00")
33+
T(0xfd6cf10d, 0x00000000, "ff")
34+
35+
T(0x16c6b7ab, 0x00000000, "0011")
36+
T(0x8eb51c3d, 0x00000000, "001122")
37+
T(0xb4471bf8, 0x00000000, "00112233")
38+
T(0xe2301fa8, 0x00000000, "0011223344")
39+
T(0xfc2e4a15, 0x00000000, "001122334455")
40+
T(0xb074502c, 0x00000000, "00112233445566")
41+
T(0x8034d2a0, 0x00000000, "0011223344556677")
42+
T(0xb4698def, 0x00000000, "001122334455667788")
4343

4444

4545
class Test_CBloomFilter(unittest.TestCase):

0 commit comments

Comments
 (0)