1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
From: Maytham Alsudany <maytha8thedev@gmail.com>
Forwarded: no
Description: fix toml test
The test was written with go-toml 1.7.0 in mind, but go-toml has changed it's
behaviour since then.
--- a/parsers/toml/toml_test.go
+++ b/parsers/toml/toml_test.go
@@ -110,7 +110,7 @@
"object": map[string]interface{}{"a": "b", "c": "d"},
"string": "Hello World",
},
- output: []byte(`array = [1,2,3,4,5]
+ output: []byte(`array = [1, 2, 3, 4, 5]
boolean = true
color = "gold"
number = 123
|