mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
fix test
This commit is contained in:
parent
96016a9ee8
commit
84f17c2ede
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Reference in a new issue