fix another travis test

This commit is contained in:
ThomasV 2017-03-06 08:44:38 +01:00
parent 411832c4ce
commit c75e074b88
1 changed files with 1 additions and 1 deletions

View File

@ -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)