From 818a716cbf50f63dddedddc5c535743441135e39 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sat, 7 Sep 2019 14:20:36 -0500 Subject: [PATCH] updated human readable length test --- onionr/tests/test_highlevelcrypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/tests/test_highlevelcrypto.py b/onionr/tests/test_highlevelcrypto.py index e214dc16..4d1a86cf 100755 --- a/onionr/tests/test_highlevelcrypto.py +++ b/onionr/tests/test_highlevelcrypto.py @@ -50,7 +50,7 @@ class OnionrCryptoTests(unittest.TestCase): def test_human_readable_length(self): human = mnemonickeys.get_human_readable_ID() - self.assertTrue(len(human.split(' ')) == 32) + self.assertTrue(len(human.split(' ')) == 24) def test_safe_compare(self): self.assertTrue(crypto.cryptoutils.safe_compare('test', 'test'))