test: Catch capitalized error messages in tests

This commit is contained in:
James Shubin
2019-08-24 01:08:33 -04:00
parent f1eedc7a01
commit 87572e8922
9 changed files with 95 additions and 95 deletions

View File

@@ -31,7 +31,7 @@ func testToLower(t *testing.T, input, expected string) {
return
}
if value.Str() != expected {
t.Errorf("Invalid output, expected %s, got %s", expected, value.Str())
t.Errorf("invalid output, expected %s, got %s", expected, value.Str())
}
}