diff options
Diffstat (limited to 'src/pkg/json/stream_test.go')
-rw-r--r-- | src/pkg/json/stream_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/json/stream_test.go b/src/pkg/json/stream_test.go index c83cfe3a9..6ddaed9fe 100644 --- a/src/pkg/json/stream_test.go +++ b/src/pkg/json/stream_test.go @@ -13,14 +13,14 @@ import ( // Test values for the stream test. // One of each JSON kind. var streamTest = []interface{}{ - float64(0.1), + 0.1, "hello", nil, true, false, []interface{}{"a", "b", "c"}, map[string]interface{}{"K": "Kelvin", "ß": "long s"}, - float64(3.14), // another value to make sure something can follow map + 3.14, // another value to make sure something can follow map } var streamEncoded = `0.1 |