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()