Commit ba700d6a authored by vaikas-google's avatar vaikas-google

Merge pull request #198 from shawnps/patch-1

fix string formatting typo
parents 0b768a01 ff26fbc7
......@@ -16,7 +16,7 @@ func TestTypeConversion(t *testing.T) {
for in, expect := range tests {
out, err := ParseType(in)
if err != nil {
t.Errorf("Error parsing type string %s: $s", in, err)
t.Errorf("Error parsing type string %s: %s", in, err)
}
if out.Name != expect.Name {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment