From 481a64417ebe1d38f7c10af7846ce1df141082b7 Mon Sep 17 00:00:00 2001 From: Jonathan Cross Date: Sun, 16 Oct 2016 13:23:43 +0200 Subject: [PATCH] Fixing final test in test_wallet.py --- lib/tests/test_wallet.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/tests/test_wallet.py b/lib/tests/test_wallet.py index 44d9d7b5..fc4ff0f4 100644 --- a/lib/tests/test_wallet.py +++ b/lib/tests/test_wallet.py @@ -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)