tfix test - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 84f17c2ede5a9fd14a9caa7ec943fac6266d4546 DIR parent 96016a9ee8d6e5198659e682d823fbe44e140f98 HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 16 Oct 2016 22:17:52 +0200 fix test Diffstat: M lib/tests/test_wallet.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- DIR diff --git a/lib/tests/test_wallet.py b/lib/tests/test_wallet.py t@@ -6,7 +6,7 @@ import os import json from StringIO import StringIO -from electrum.storage import WalletStorage +from electrum.storage import WalletStorage, FINAL_SEED_VERSION class FakeSynchronizer(object): t@@ -55,9 +55,9 @@ class TestWalletStorage(WalletTestCase): storage = WalletStorage(self.wallet_path) some_dict = { - u"a": u"b", - u"c": u"d", - u"seed_version": 12} + u"a": u"b", + u"c": u"d", + u"seed_version": FINAL_SEED_VERSION} for key, value in some_dict.items(): storage.put(key, value)