You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
t.Run("parse the string and return a pointer to the Config", func(t *testing.T) {
got, err := ParseString("{foo:bar10.0}")
assertNoError(t, err)
assertDeepEqual(t, got, &Config{Object{"foo": String("bar10.0")}})
})
and I got this: expected: "{foo:\"bar10.0\"}", got: "{foo:\"bar10\"\"\"0e+00}"
In HOCON Playground, I'm input foo: bar1.0 and I got "foo" : "bar1.0", So I think this is a bug.
The text was updated successfully, but these errors were encountered:
I add test case like this:
and I got this:
expected: "{foo:\"bar10.0\"}", got: "{foo:\"bar10\"\"\"0e+00}"
In HOCON Playground, I'm input
foo: bar1.0
and I got"foo" : "bar1.0"
, So I think this is a bug.The text was updated successfully, but these errors were encountered: