sharding: \notarys\notaries

Former-commit-id: 7eb970515405983d0d0d8f805fdff5c5a3317f93 [formerly 664a9e0acbccebda143006e8063389884efae880]
Former-commit-id: 61c048015002bf92da708f80365dfc38d11671ef
This commit is contained in:
Terence Tsao 2018-04-27 14:14:55 -07:00
parent 2732187e64
commit f308706680

View File

@ -104,13 +104,13 @@ func TestJoinNotaryPool(t *testing.T) {
backend, smc := setup()
client := &mockClient{smc, t}
// There should be no notarys initially
// There should be no notary initially
numNotaries, err := smc.NumNotaries(&bind.CallOpts{})
if err != nil {
t.Fatal(err)
}
if big.NewInt(0).Cmp(numNotaries) != 0 {
t.Fatalf("Unexpected number of notarys. Got %d, wanted 0.", numNotaries)
t.Fatalf("Unexpected number of notaries. Got %d, wanted 0.", numNotaries)
}
err = joinNotaryPool(client)
@ -125,6 +125,6 @@ func TestJoinNotaryPool(t *testing.T) {
t.Fatal(err)
}
if big.NewInt(1).Cmp(numNotaries) != 0 {
t.Fatalf("Unexpected number of notarys. Got %d, wanted 1.", numNotaries)
t.Fatalf("Unexpected number of notaries. Got %d, wanted 1.", numNotaries)
}
}