Browse Source

Fix typo in a test error message

Carl Jackson 11 years ago
parent
commit
60d46a21e3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      web/func_equal_test.go

+ 1
- 1
web/func_equal_test.go View File

@ -79,6 +79,6 @@ func TestFuncEqual(t *testing.T) {
t.Errorf("h and j should not have been equal") t.Errorf("h and j should not have been equal")
} }
if !funcEqual(a, k) { if !funcEqual(a, k) {
t.Errorf("a and k should not have been equal")
t.Errorf("a and k should have been equal")
} }
} }

Loading…
Cancel
Save