fix test
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user