Skip to content

Commit

Permalink
fix scheduled workflow (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinaNikolaevaa authored Jan 28, 2025
1 parent 9343938 commit 6e76005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:

dockerize:
name: Dockerize neon tests
if: ${{ github.ref_name != 'develop'}}
runs-on: ["self-hosted", "k8s-prod"]
needs: pre-commit-check
steps:
- uses: actions/checkout@v4
- name: Dockerize neon tests
if: ${{ github.ref_name != 'develop'}}
uses: ./.github/actions/dockerize-neon-tests
with:
image_tag: ${{ github.sha }}
Expand Down
7 changes: 2 additions & 5 deletions integration/tests/basic/rpc/test_rpc_estimate_gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,10 @@ def test_rpc_estimate_gas_erc20(self, erc20_simple, env_name: EnvName):

@pytest.mark.neon_only # Geth returns a different estimate
def test_rpc_estimate_gas_spl(self, erc20_spl):
recipient_account = self.accounts[1]
recipient_account = self.accounts.create_account()
tx_receipt = erc20_spl.transfer(erc20_spl.account, recipient_account, 1)
transaction = self.web3_client.get_transaction_by_hash(tx_receipt["transactionHash"])

assert "gas" in transaction
estimated_gas = transaction["gas"]
assert estimated_gas == 2_079_280
assert transaction["gas"] == 2_079_280

@pytest.mark.neon_only # Geth returns a different estimate
def test_rpc_estimate_gas_contract_get_value(self, common_contract):
Expand Down

0 comments on commit 6e76005

Please sign in to comment.