Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanAdamovNeon committed Sep 25, 2024
1 parent a176652 commit 3bf0103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/tests/basic/erc/test_ERC20SPL.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 3bf0103

Please sign in to comment.