From c75e074b88a9e56b71b072822ff8d2247fffeef4 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 6 Mar 2017 08:44:38 +0100 Subject: [PATCH] fix another travis test --- lib/tests/test_wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tests/test_wallet.py b/lib/tests/test_wallet.py index 3fadacc7..6a3cc95e 100644 --- a/lib/tests/test_wallet.py +++ b/lib/tests/test_wallet.py @@ -42,7 +42,7 @@ class TestWalletStorage(WalletTestCase): def test_read_dictionnary_from_file(self): some_dict = {"a":"b", "c":"d"} - contents = repr(some_dict) + contents = json.dumps(some_dict) with open(self.wallet_path, "w") as f: contents = f.write(contents)