mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
ethclient: fix hardcoded test
This commit is contained in:
parent
e97ab36093
commit
abfa3db7b9
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue