aboutsummaryrefslogtreecommitdiff
path: root/bytesconv_test.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2019-09-28 14:53:43 +0200
committerGravatar Erik Dubbelboer <erik@dubbelboer.com> 2019-09-28 14:53:43 +0200
commit97d51fbf75fe034cc0c69eb9eb8ce595ebda3e48 (patch)
tree94c55304c83a490e80d01022785e1f2988ea5849 /bytesconv_test.go
parentAdd go version to go.mod, test with 1.13.1 (diff)
downloadfasthttp-97d51fbf75fe034cc0c69eb9eb8ce595ebda3e48.tar.gz
fasthttp-97d51fbf75fe034cc0c69eb9eb8ce595ebda3e48.tar.bz2
fasthttp-97d51fbf75fe034cc0c69eb9eb8ce595ebda3e48.zip
go fmt ./...
Diffstat (limited to 'bytesconv_test.go')
-rw-r--r--bytesconv_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bytesconv_test.go b/bytesconv_test.go
index 483bc67..c160b6b 100644
--- a/bytesconv_test.go
+++ b/bytesconv_test.go
@@ -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)
}