From 2be8762aa3769448f951cd66fe8cb77afe32a918 Mon Sep 17 00:00:00 2001 From: hweawer Date: Fri, 25 Oct 2024 14:56:42 +0200 Subject: [PATCH] Remove test --- .../contracts/test_staking_module.py | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 tests/blockchain/contracts/test_staking_module.py diff --git a/tests/blockchain/contracts/test_staking_module.py b/tests/blockchain/contracts/test_staking_module.py deleted file mode 100644 index 0090df38..00000000 --- a/tests/blockchain/contracts/test_staking_module.py +++ /dev/null @@ -1,22 +0,0 @@ -import pytest -import variables - -from tests.utils.contract_utils import check_contract -from tests.utils.regrex import ADDRESS_REGREX, check_value_re, check_value_type - - -@pytest.mark.integration -@pytest.mark.parametrize( - 'web3_provider_integration', - [{'endpoint': variables.TESTNET_WEB3_RPC_ENDPOINTS[0]}], - indirect=['web3_provider_integration'], -) -def test_staking_module_contract_call(staking_module, caplog): - check_contract( - staking_module, - [ - ('get_staking_module_id', None, lambda response: check_value_type(response, int)), - ('weth', None, lambda response: check_value_re(ADDRESS_REGREX, response)), - ], - caplog, - )