cmd/geth: fix port clash in genesis test

This commit is contained in:
Felix Lange 2016-08-25 16:44:35 +02:00
parent 6b727c0440
commit de54273f51

View File

@ -100,7 +100,10 @@ func TestCustomGenesis(t *testing.T) {
runGeth(t, "--datadir", datadir, "init", json).cmd.Wait() runGeth(t, "--datadir", datadir, "init", json).cmd.Wait()
// Query the custom genesis block // Query the custom genesis block
geth := runGeth(t, "--datadir", datadir, "--maxpeers", "0", "--nodiscover", "--nat", "none", "--ipcdisable", "--exec", tt.query, "console") geth := runGeth(t,
"--datadir", datadir, "--maxpeers", "0", "--port", "0",
"--nodiscover", "--nat", "none", "--ipcdisable",
"--exec", tt.query, "console")
geth.expectRegexp(tt.result) geth.expectRegexp(tt.result)
geth.expectExit() geth.expectExit()
} }