Skip to content

Commit

Permalink
fix stash test
Browse files Browse the repository at this point in the history
  • Loading branch information
aardbol committed Oct 19, 2023
1 parent 8cca9f8 commit 6288745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/stash_account_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def tearDown(self):
def test_get_account_funds(self):
alice_key = Keypair.create_from_uri("//Alice")
alice_funds = get_account_funds(self.polkadot_rpc_ws_url, alice_key.ss58_address)
self.assertEqual(alice_funds, 10000000000000000, "Alice's funds successfully retrieved")
self.assertEqual(alice_funds, 1000000000000000000, "Alice's funds successfully retrieved")

if __name__ == '__main__':
unittest.main()

0 comments on commit 6288745

Please sign in to comment.