From: Nigel Tao Date: Wed, 2 Nov 2011 07:03:45 +0000 (+1100) Subject: json: fix typo in scanner_test.go. X-Git-Tag: weekly.2011-11-08~83 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5e4e8f49c5a6a5850e808e2378103c6dd83420e7;p=gostls13.git json: fix typo in scanner_test.go. R=dsymonds CC=golang-dev https://golang.org/cl/5303092 --- diff --git a/src/pkg/json/scanner_test.go b/src/pkg/json/scanner_test.go index 0b86cb537d..429ac366d3 100644 --- a/src/pkg/json/scanner_test.go +++ b/src/pkg/json/scanner_test.go @@ -147,7 +147,7 @@ var indentErrorTests = []indentErrorTest{ {`{"X": "foo" "Y": "bar"}`, &SyntaxError{"invalid character '\"' after object key:value pair", 13}}, } -func TestIdentErrors(t *testing.T) { +func TestIndentErrors(t *testing.T) { for i, tt := range indentErrorTests { slice := make([]uint8, 0) buf := bytes.NewBuffer(slice)