Skip to content

Commit 4c737a2

Browse files
committed
Update wallet test to check if instanceof Keystore
1 parent 3912835 commit 4c737a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_api/test_wallet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class TestWallet(unittest.TestCase):
88

99
def test_smoke_keystore_address(self):
1010
ks = dcp.wallet.get()
11-
self.assertTrue(pm.eval("(x)=> x instanceof dcp.wallet.BankAccountKeystore")(ks.js_ref))
11+
self.assertTrue(pm.eval("(x)=> x instanceof dcp.wallet.Keystore")(ks.js_ref))
1212

1313
address = ks.address
1414
self.assertTrue(isinstance(address, dcp.wallet.Address))

0 commit comments

Comments
 (0)