modify double quotes (#448)

This commit is contained in:
Neal Caffery
2018-04-13 21:05:07 +08:00
committed by 无闻
parent 2c4359c135
commit 7c8672ed8e

View File

@@ -33,7 +33,7 @@ func TestFunction(t *testing.T) {
```go
func verify(t *testing.T, testnum int, testcase, input, output, expected string) {
if expected != output {
t.Errorf(%d. %s with input = %s: output %s != %s, testnum, testcase, input, output, expected)
t.Errorf("%d. %s with input = %s: output %s != %s", testnum, testcase, input, output, expected)
}
}
```