Merge pull request #1983 from jonathancross/fix-TestWalletStorage

Fixing final test in test_wallet.py
This commit is contained in:
ThomasV 2016-10-16 15:18:36 +02:00 committed by GitHub
commit f209b81f98
1 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,10 @@ class TestWalletStorage(WalletTestCase):
storage = WalletStorage(self.wallet_path)
some_dict = {"a":"b", "c":"d"}
some_dict = {
u"a": u"b",
u"c": u"d",
u"seed_version": 12}
for key, value in some_dict.items():
storage.put(key, value)