Skip to content

Commit

Permalink
Added quotes around expected/actual output
Browse files Browse the repository at this point in the history
  • Loading branch information
mholt authored and dustin committed Apr 22, 2014
1 parent 4539fc6 commit 3cd90eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common_test.go
Expand Up @@ -11,7 +11,7 @@ type testList []struct {
func (tl testList) validate(t *testing.T) {
for _, test := range tl {
if test.got != test.exp {
t.Errorf("On %v, expected %v, but got %v",
t.Errorf("On %v, expected '%v', but got '%v'",
test.name, test.exp, test.got)
}
}
Expand Down

0 comments on commit 3cd90eb

Please sign in to comment.