Merge pull request #20 from StephenButtolph/testing-typo

Fixed testing typo
This commit is contained in:
Stephen Buttolph 2020-03-18 16:43:56 -04:00 committed by GitHub
commit 3576be1dc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ func TestSnowballTrinary(t *testing.T) {
tree.RecordPoll(redBag)
if pref := tree.Preference(); !Blue.Equals(pref) {
t.Fatalf("Wrong preference. Expected %s got %s", Green, pref)
t.Fatalf("Wrong preference. Expected %s got %s", Blue, pref)
} else if tree.Finalized() {
t.Fatalf("Finalized too early")
}