Browse Source

fix test

master
ThomasV 9 years ago
parent
commit
84f17c2ede
  1. 8
      lib/tests/test_wallet.py

8
lib/tests/test_wallet.py

@ -6,7 +6,7 @@ import os
import json import json
from StringIO import StringIO from StringIO import StringIO
from electrum.storage import WalletStorage from electrum.storage import WalletStorage, FINAL_SEED_VERSION
class FakeSynchronizer(object): class FakeSynchronizer(object):
@ -55,9 +55,9 @@ class TestWalletStorage(WalletTestCase):
storage = WalletStorage(self.wallet_path) storage = WalletStorage(self.wallet_path)
some_dict = { some_dict = {
u"a": u"b", u"a": u"b",
u"c": u"d", u"c": u"d",
u"seed_version": 12} u"seed_version": FINAL_SEED_VERSION}
for key, value in some_dict.items(): for key, value in some_dict.items():
storage.put(key, value) storage.put(key, value)

Loading…
Cancel
Save