Correct check test chainspec var

This commit is contained in:
nolash
2021-08-17 08:33:52 +02:00
parent 6e936b1b84
commit dae7209650
2 changed files with 2 additions and 2 deletions

View File

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

View File

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