fixed wrong search pool usage

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2023-01-11 13:36:15 +01:00
parent 0ba92ab71b
commit 71f0c2cc5e
No known key found for this signature in database

View File

@ -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