fix missing verb at end of format string

This commit is contained in:
huangjiuyuan 2017-07-27 15:35:29 +08:00
parent 6000712803
commit c85d29f5fa

View File

@ -110,7 +110,7 @@ func TestExpired(t *testing.T) {
return
}
if test.wantExpired == valid {
t.Errorf("wanted expired %t, got %", test.wantExpired, !valid)
t.Errorf("wanted expired %t, got %t", test.wantExpired, !valid)
}
})
}