Skip to content

Commit

Permalink
Fork gnosis from block
Browse files Browse the repository at this point in the history
  • Loading branch information
hweawer committed Oct 10, 2024
1 parent 2efdc71 commit 50c46ab
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tests/transport/test_data_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@
# DATA_BUS_ADDRESS: '0x5FbDB2315678afecb367f032d93F642f64180aa3'
# }
@pytest.mark.integration_chiado
def test_data_bus_provider(web3_transaction_integration):
@pytest.mark.parametrize(
'web3_provider_integration',
[12217621],
indirect=['web3_provider_integration'],
)
def test_data_bus_provider(
web3_provider_integration,
web3_transaction_integration,
):
"""
Utilise this function for an adhoc testing of data bus transport
"""
Expand All @@ -46,9 +54,7 @@ def test_data_bus_provider(web3_transaction_integration):
allowed_guardians_provider=lambda: [Web3.to_checksum_address(_DEFAULT_GUARDIAN)],
)
messages = provider.get_messages()
for mes in messages:
print(mes)
assert messages
assert len(messages) == 75


@pytest.mark.unit
Expand Down

0 comments on commit 50c46ab

Please sign in to comment.