Commit 16b44280 authored by Tamer Tas's avatar Tamer Tas

Fix usage of format specifier %s

parent be7c2230
...@@ -89,7 +89,7 @@ func TestValidate(t *testing.T) { ...@@ -89,7 +89,7 @@ func TestValidate(t *testing.T) {
t.Errorf("expected empty string, got %s", status) t.Errorf("expected empty string, got %s", status)
} }
if status != test.expectedStatus { if status != test.expectedStatus {
t.Errorf("expected %s, got %s", test.expectedStatus.String(), status.String()) t.Errorf("expected %s, got %s", test.expectedStatus, status)
} }
} }
} }
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