aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tdewolff/parse/strconv/int_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/tdewolff/parse/strconv/int_test.go')
-rw-r--r--vendor/github.com/tdewolff/parse/strconv/int_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/tdewolff/parse/strconv/int_test.go b/vendor/github.com/tdewolff/parse/strconv/int_test.go
index 1719f45..2df2cdf 100644
--- a/vendor/github.com/tdewolff/parse/strconv/int_test.go
+++ b/vendor/github.com/tdewolff/parse/strconv/int_test.go
@@ -41,6 +41,8 @@ func TestLenInt(t *testing.T) {
{1, 1},
{10, 2},
{99, 2},
+ {9223372036854775807, 19},
+ {-9223372036854775808, 19},
// coverage
{100, 3},