Skip to content

Commit

Permalink
Add correct ENV Vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jeannettemcd committed May 24, 2024
1 parent cae3efe commit 3a0b1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def mcd(web3) -> DssDeployment:

@pytest.fixture(scope="session")
def keeper(mcd: DssDeployment, keeper_address: Address) -> ChiefKeeper:
keeper = ChiefKeeper(args=args(f"--eth-from {keeper_address} --network testnet --rpc-host https://localhost:8545"), web3=mcd.web3)
keeper = ChiefKeeper(args=args(f"--eth-from {keeper_address} --network testnet --rpc-ptimary-host https://localhost:8545 --rpc-backup-host https://localhost:8545"), web3=mcd.web3)
assert isinstance(keeper, ChiefKeeper)
return keeper

Expand Down

0 comments on commit 3a0b1e0

Please sign in to comment.