From dae7209650a003a11995bc2f2cee843777f1467a Mon Sep 17 00:00:00 2001 From: nolash Date: Tue, 17 Aug 2021 08:33:52 +0200 Subject: [PATCH] Correct check test chainspec var --- apps/cic-eth/tests/check/test_check_gas.py | 2 +- apps/cic-eth/tests/check/test_check_signer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/cic-eth/tests/check/test_check_gas.py b/apps/cic-eth/tests/check/test_check_gas.py index ea0ffb88..056120c8 100644 --- a/apps/cic-eth/tests/check/test_check_gas.py +++ b/apps/cic-eth/tests/check/test_check_gas.py @@ -11,7 +11,7 @@ def test_check_gas( whoever, ): - config.add(str(default_chain_spec), 'CIC_CHAIN_SPEC', exists_ok=True) + config.add(str(default_chain_spec), 'CHAIN_SPEC', exists_ok=True) config.add(100, 'ETH_GAS_GIFTER_MINIMUM_BALANCE', exists_ok=True) assert health(config=config) diff --git a/apps/cic-eth/tests/check/test_check_signer.py b/apps/cic-eth/tests/check/test_check_signer.py index 5572e195..63959de9 100644 --- a/apps/cic-eth/tests/check/test_check_signer.py +++ b/apps/cic-eth/tests/check/test_check_signer.py @@ -9,5 +9,5 @@ def test_check_signer( eth_rpc, ): - config.add(str(default_chain_spec), 'CIC_CHAIN_SPEC', exists_ok=True) + config.add(str(default_chain_spec), 'CHAIN_SPEC', exists_ok=True) assert health(config=config)