From 49549eb01c9e508ab3852e010638b06462673c3f Mon Sep 17 00:00:00 2001 From: Dirk Brink Date: Fri, 17 Nov 2023 11:04:04 -0800 Subject: [PATCH] ethereum: Fix flaky tests --- ethereum/forge-test/Governance.t.sol | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ethereum/forge-test/Governance.t.sol b/ethereum/forge-test/Governance.t.sol index 597c4cbd6..4585ca99a 100644 --- a/ethereum/forge-test/Governance.t.sol +++ b/ethereum/forge-test/Governance.t.sol @@ -792,8 +792,10 @@ contract TestGovernance is TestUtils { return // Avoid precompiled contracts addr <= address(0x9) || - // Wormhole contract does not accept assets + // Wormhole implementation contract does not accept assets addr == address(impl) || + // Wormhole proxy contract does not accept assets + addr == address(proxied) || // Setup contract addr == address(setup) || // Test contract