Skip to content

Commit efbe80b

Browse files
cari-lynnjtigger
authored andcommitted
Explicitly accepting go fmt of vendored decode_test.go
- this file was recently updated in a bug fix on parsing float values. as a result what _was_ a string is now a float literal (see #483) - `go fmt` uses lowercase 'e' for the exponent notation - various tooling applies `go fmt` to our code while building and releasing. - we've updated our build and test scripts to skip this package (see prior commits). - Go Releaser is also `go fmt`'ing our files just prior to release. Signed-off-by: John Ryan <[email protected]>
1 parent 0d7fbff commit efbe80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/yamlmeta/internal/yaml.v2/decode_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ var unmarshalTests = []struct {
700700
M{"a": 123456e1},
701701
}, {
702702
"a: 123456E1\n",
703-
M{"a": 123456E1},
703+
M{"a": 123456e1},
704704
},
705705
// yaml-test-suite 3GZX: Spec Example 7.1. Alias Nodes
706706
{

0 commit comments

Comments
 (0)