From 62887454b94108e585c12ebcb7ff035e89bc477e Mon Sep 17 00:00:00 2001 From: aardbol Date: Thu, 19 Oct 2023 15:44:58 +0200 Subject: [PATCH] fix stash test --- tests/stash_account_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stash_account_test.py b/tests/stash_account_test.py index 7812536..621a653 100644 --- a/tests/stash_account_test.py +++ b/tests/stash_account_test.py @@ -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()