Browse Source

fix broken test

283
ThomasV 10 years ago
parent
commit
03f4b4c933
  1. 3
      lib/tests/test_wallet.py

3
lib/tests/test_wallet.py

@ -3,6 +3,7 @@ import tempfile
import sys
import unittest
import os
import json
from StringIO import StringIO
from lib.wallet import WalletStorage, NewWallet
@ -97,7 +98,7 @@ class TestWalletStorage(WalletTestCase):
contents = ""
with open(path, "r") as f:
contents = f.read()
self.assertEqual(repr(some_dict), contents)
self.assertEqual(some_dict, json.loads(contents))
class TestNewWallet(WalletTestCase):

Loading…
Cancel
Save