From 09eca9aad61aec1bf03d3ba81754fe5cfbb88fdc Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Mon, 15 Jan 2024 19:14:40 -0600 Subject: [PATCH] test: missing decors --- tests/functional/geth/test_provider.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/functional/geth/test_provider.py b/tests/functional/geth/test_provider.py index a44067c305..3b2f45af9f 100644 --- a/tests/functional/geth/test_provider.py +++ b/tests/functional/geth/test_provider.py @@ -260,6 +260,7 @@ def test_send_transaction_when_no_error_and_receipt_fails( geth_provider._web3 = start_web3 +@geth_process_test def test_send_call(geth_provider, ethereum, geth_contract): txn = DynamicFeeTransaction.model_validate( { @@ -276,6 +277,7 @@ def test_send_call(geth_provider, ethereum, geth_contract): assert to_int(actual) == 0 +@geth_process_test def test_send_call_track_gas(geth_provider, mocker, gas_tracker, geth_contract): """ This ensures we can track eth-calls' gas when using the --gas flag in `ape test`. @@ -329,6 +331,7 @@ def test_network_choice_when_custom(geth_provider): assert actual == "http://127.0.0.1:5550" +@geth_process_test def test_make_request_not_exists(geth_provider): with pytest.raises( APINotImplementedError,