From 7c8672ed8ea066f5932b5740925addeab34a3c46 Mon Sep 17 00:00:00 2001 From: Neal Caffery Date: Fri, 13 Apr 2018 21:05:07 +0800 Subject: [PATCH] modify double quotes (#448) --- eBook/13.9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/13.9.md b/eBook/13.9.md index 82d6229..cd7b565 100644 --- a/eBook/13.9.md +++ b/eBook/13.9.md @@ -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) } } ```