diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f1e620c60..8d8f58ea3 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -73,7 +73,7 @@ jobs: DJANGO_SETTINGS_MODULE: config.settings.test ETHEREUM_MAINNET_NODE: ${{ secrets.ETHEREUM_MAINNET_NODE }} ETHEREUM_POLYGON_NODE: ${{ secrets.ETHEREUM_POLYGON_NODE }} - BUNDLER_CLIENT_URL: ${{ secrets.BUNDLER_CLIENT_URL }} + ETHEREUM_4337_BUNDLER_URL: ${{ secrets.ETHEREUM_4337_BUNDLER_URL }} - name: Test packaging run: pip install -e . - name: Send results to coveralls diff --git a/gnosis/eth/tests/account_abstraction/test_e2e_bundler_client.py b/gnosis/eth/tests/account_abstraction/test_e2e_bundler_client.py index 333758e6d..8d5b2ec32 100644 --- a/gnosis/eth/tests/account_abstraction/test_e2e_bundler_client.py +++ b/gnosis/eth/tests/account_abstraction/test_e2e_bundler_client.py @@ -14,7 +14,7 @@ class TestE2EBundlerClient(TestCase): def setUp(self): - bundler_client_variable_name = "BUNDLER_CLIENT_URL" + bundler_client_variable_name = "ETHEREUM_4337_BUNDLER_URL" bundler_client_url = os.environ.get(bundler_client_variable_name) if not bundler_client_url: pytest.skip(f"{bundler_client_variable_name} needs to be defined")