Commit ff26fbc7 authored by Shawn Smith's avatar Shawn Smith

fix string formatting typo

parent 5343c35b
...@@ -16,7 +16,7 @@ func TestTypeConversion(t *testing.T) { ...@@ -16,7 +16,7 @@ func TestTypeConversion(t *testing.T) {
for in, expect := range tests { for in, expect := range tests {
out, err := ParseType(in) out, err := ParseType(in)
if err != nil { 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 { 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