From b36a0a31b9ba8867a964da545025f357da7ec1ca Mon Sep 17 00:00:00 2001 From: Tiffany McKenzie <25855566+tmckenzie51@users.noreply.github.com> Date: Wed, 17 Mar 2021 12:15:43 -0500 Subject: [PATCH] update geth and parity common.py --- tests/integration/go_ethereum/common.py | 8 ++++---- tests/integration/parity/common.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/integration/go_ethereum/common.py b/tests/integration/go_ethereum/common.py index 586e55d479..26effe8c5d 100644 --- a/tests/integration/go_ethereum/common.py +++ b/tests/integration/go_ethereum/common.py @@ -43,18 +43,18 @@ def test_eth_estimateGas_with_block(self, ) @pytest.mark.xfail(reason='eth_signTypedData has not been released in geth') - def test_eth_signTypedData(self, + def test_eth_sign_typed_data(self, web3, unlocked_account_dual_type): - super().test_eth_signTypedData( + super().test_eth_sign_typed_data( web3, unlocked_account_dual_type ) @pytest.mark.xfail(reason='eth_signTypedData has not been released in geth') - def test_invalid_eth_signTypedData(self, + def test_invalid_eth_sign_typed_data(self, web3, unlocked_account_dual_type): - super().test_invalid_eth_signTypedData( + super().test_invalid_eth_sign_typed_data( web3, unlocked_account_dual_type ) diff --git a/tests/integration/parity/common.py b/tests/integration/parity/common.py index 287bcc98c7..651c186168 100644 --- a/tests/integration/parity/common.py +++ b/tests/integration/parity/common.py @@ -147,18 +147,18 @@ def test_eth_getLogs_without_logs(self, web3, block_with_txn_with_log): assert len(result) == 0 @pytest.mark.xfail(reason='eth_signTypedData has not been released in Parity') - def test_eth_signTypedData(self, + def test_eth_sign_typed_data(self, web3, unlocked_account_dual_type): - super().test_eth_signTypedData( + super().test_eth_sign_typed_data( web3, unlocked_account_dual_type ) @pytest.mark.xfail(reason='eth_signTypedData has not been released in Parity') - def test_invalid_eth_signTypedData(self, + def test_invalid_eth_sign_typed_data(self, web3, unlocked_account_dual_type): - super().test_invalid_eth_signTypedData( + super().test_invalid_eth_sign_typed_data( web3, unlocked_account_dual_type )