Merge pull request #6252 from krousey/string_format_cleanup

Fixing a lot of string formatting issues
This commit is contained in:
Victor Marmol
2015-03-31 16:57:36 -07:00
26 changed files with 66 additions and 66 deletions

View File

@@ -63,7 +63,7 @@ func TestSemantic(t *testing.T) {
for index, item := range table {
if e, a := item.shouldEqual, Semantic.DeepEqual(item.a, item.b); e != a {
t.Errorf("expected %v, got %v.", index, e, a)
t.Errorf("case[%d], expected %v, got %v.", index, e, a)
}
}
}