Update tests for new AddressInfo type

This commit is contained in:
thunderbiscuit
2023-03-28 14:26:56 -04:00
parent e7e1a6057e
commit f26031db80
5 changed files with 4 additions and 9 deletions

View File

@@ -6,10 +6,5 @@ class TestBdk(unittest.TestCase):
def test_some_enum(self):
network = Network.TESTNET
def test_some_dict(self):
a = AddressInfo(index=42, address="testaddress")
self.assertEqual(42, a.index)
self.assertEqual("testaddress", a.address)
if __name__=='__main__':
unittest.main()