ethclient: fix hardcoded test

This commit is contained in:
Marius van der Wijden 2023-10-04 17:02:21 +02:00
parent e97ab36093
commit abfa3db7b9

View file

@ -480,7 +480,7 @@ func testStatusFunctions(t *testing.T, client *rpc.Client) {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if networkID.Cmp(big.NewInt(0)) != 0 {
if networkID.Cmp(big.NewInt(1337)) != 0 {
t.Fatalf("unexpected networkID: %v", networkID)
}