Browse Source

fix broken test

283
ThomasV 11 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 sys
import unittest import unittest
import os import os
import json
from StringIO import StringIO from StringIO import StringIO
from lib.wallet import WalletStorage, NewWallet from lib.wallet import WalletStorage, NewWallet
@ -97,7 +98,7 @@ class TestWalletStorage(WalletTestCase):
contents = "" contents = ""
with open(path, "r") as f: with open(path, "r") as f:
contents = f.read() contents = f.read()
self.assertEqual(repr(some_dict), contents) self.assertEqual(some_dict, json.loads(contents))
class TestNewWallet(WalletTestCase): class TestNewWallet(WalletTestCase):

Loading…
Cancel
Save