Skip to content

Commit df8c9ab

Browse files
committed
fix: update error message formatting in TestMin function
1 parent 8cb9b1e commit df8c9ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hooks/jsonnet-fmt-hook/math_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestMin(t *testing.T) {
2626
for _, param := range params {
2727
got := min(param.values[0], param.values[1])
2828
if got != param.want {
29-
t.Errorf("args='%q', want=%v, got=%v", param.values, param.want, got)
29+
t.Errorf("args=%v, want=%v, got=%v", param.values, param.want, got)
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)