Skip to content

Commit 9729cc0

Browse files
committed
fix(ev-deployer): use case-insensitive grep in e2e genesis address checks
1 parent 46b75bf commit 9729cc0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bin/ev-deployer/tests/e2e_genesis.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ echo "=== Generating genesis with ev-deployer ==="
7777
echo "Genesis written to $GENESIS"
7878

7979
# Quick sanity: address should be in the alloc
80-
grep -q "000000000000000000000000000000000000Ad00" "$GENESIS" \
80+
grep -qi "000000000000000000000000000000000000Ad00" "$GENESIS" \
8181
|| fail "AdminProxy address not found in genesis"
82-
grep -q "000000000000000000000000000000000000FE00" "$GENESIS" \
82+
grep -qi "000000000000000000000000000000000000FE00" "$GENESIS" \
8383
|| fail "FeeVault address not found in genesis"
84-
grep -q "0000000000000000000000000000000000001100" "$GENESIS" \
84+
grep -qi "0000000000000000000000000000000000001100" "$GENESIS" \
8585
|| fail "MerkleTreeHook address not found in genesis"
8686

8787
pass "genesis contains all three contract addresses"

0 commit comments

Comments
 (0)