From 3bf0103b1d0ee96aa2e34a4129825198c1684e97 Mon Sep 17 00:00:00 2001 From: Ivan Adamov Date: Wed, 25 Sep 2024 08:32:24 -0700 Subject: [PATCH] s --- integration/tests/basic/erc/test_ERC20SPL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/tests/basic/erc/test_ERC20SPL.py b/integration/tests/basic/erc/test_ERC20SPL.py index 509c2a678..d677d1e08 100644 --- a/integration/tests/basic/erc/test_ERC20SPL.py +++ b/integration/tests/basic/erc/test_ERC20SPL.py @@ -56,7 +56,6 @@ def test_metaplex_data(self, erc20_contract): assert metadata["is_mutable"] is True @pytest.mark.mainnet - @pytest.mark.cost_report def test_balanceOf(self, erc20_contract): recipient_account = self.accounts[1] transfer_amount = random.randint(0, 1000) @@ -200,6 +199,7 @@ def test_allowance_for_new_account(self, erc20_contract): ).call() assert allowance == 0 + @pytest.mark.cost_report def test_transfer(self, erc20_contract, restore_balance): new_account = self.accounts.create_account() balance_acc1_before = erc20_contract.contract.functions.balanceOf(erc20_contract.account.address).call()