diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 92dab5f..7bbbae6 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -323,7 +323,7 @@ def test_election_new_upsert_validator_with_tendermint(b, priv_validator_path, u election_id = run_election_new_upsert_validator(new_args, b) - assert b.get_transaction(election_id) + assert b.get_transaction(election_id, TARANT_TABLE_GOVERNANCE) @pytest.mark.bdb @@ -359,7 +359,7 @@ def test_election_new_chain_migration_with_tendermint(b, priv_validator_path, us election_id = run_election_new_chain_migration(new_args, b) - assert b.get_transaction(election_id) + assert b.get_transaction(election_id,TARANT_TABLE_GOVERNANCE) @pytest.mark.bdb @@ -445,7 +445,7 @@ def test_election_approve_with_tendermint(b, priv_validator_path, user_sk, valid args = Namespace(action="approve", election_id=election_id, sk=priv_validator_path, config={}) approve = run_election_approve(args, b) - assert b.get_transaction(approve) + assert b.get_transaction(approve,TARANT_TABLE_GOVERNANCE) @pytest.mark.bdb