aboutsummaryrefslogtreecommitdiff
path: root/bytesconv_64_test.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2018-11-14 01:59:18 +0800
committerGravatar Erik Dubbelboer <erik@dubbelboer.com> 2018-11-14 01:59:18 +0800
commit8a9bdc8177d5b4681dd09bb34e7b00170b05e342 (patch)
tree6e7dbe9d231caa7d76e36e3ecceb8c387d8709b6 /bytesconv_64_test.go
parentfix go vet do not work on noCopy (diff)
downloadfasthttp-8a9bdc8177d5b4681dd09bb34e7b00170b05e342.tar.gz
fasthttp-8a9bdc8177d5b4681dd09bb34e7b00170b05e342.tar.bz2
fasthttp-8a9bdc8177d5b4681dd09bb34e7b00170b05e342.zip
Fix ParseUint to support all possible numbers
Fixes #461
Diffstat (limited to 'bytesconv_64_test.go')
-rw-r--r--bytesconv_64_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/bytesconv_64_test.go b/bytesconv_64_test.go
index 52d9e3e..b4165a6 100644
--- a/bytesconv_64_test.go
+++ b/bytesconv_64_test.go
@@ -38,4 +38,5 @@ func TestParseUintSuccess(t *testing.T) {
testParseUintSuccess(t, "123", 123)
testParseUintSuccess(t, "1234567890", 1234567890)
testParseUintSuccess(t, "123456789012345678", 123456789012345678)
+ testParseUintSuccess(t, "9223372036854775807", 9223372036854775807)
}