From 5e4e8f49c5a6a5850e808e2378103c6dd83420e7 Mon Sep 17 00:00:00 2001 From: Nigel Tao Date: Wed, 2 Nov 2011 18:03:45 +1100 Subject: [PATCH] json: fix typo in scanner_test.go. R=dsymonds CC=golang-dev https://golang.org/cl/5303092 --- src/pkg/json/scanner_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.50.0