go fmt ./...

This commit is contained in:
Erik Dubbelboer
2019-09-28 14:53:43 +02:00
parent e6a8bcfb0c
commit 97d51fbf75
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ func TestParseUfloatSuccess(t *testing.T) {
testParseUfloatSuccess(t, "123.456", 123.456)
testParseUfloatSuccess(t, "123", 123)
testParseUfloatSuccess(t, "1234e2", 1234e2)
testParseUfloatSuccess(t, "1234E-5", 1234E-5)
testParseUfloatSuccess(t, "1234E-5", 1234e-5)
testParseUfloatSuccess(t, "1.234e+3", 1.234e+3)
}