From f30870668010a7c87ff0ca258191ff8f0bc19d57 Mon Sep 17 00:00:00 2001 From: Terence Tsao Date: Fri, 27 Apr 2018 14:14:55 -0700 Subject: [PATCH] sharding: \notarys\notaries Former-commit-id: 7eb970515405983d0d0d8f805fdff5c5a3317f93 [formerly 664a9e0acbccebda143006e8063389884efae880] Former-commit-id: 61c048015002bf92da708f80365dfc38d11671ef --- sharding/notary/notary_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sharding/notary/notary_test.go b/sharding/notary/notary_test.go index 1a1e99b1c..a7a7fc6d8 100644 --- a/sharding/notary/notary_test.go +++ b/sharding/notary/notary_test.go @@ -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) } }