aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tdewolff/parse/strconv/int_test.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-07-05 22:18:51 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-05 22:18:51 -0700
commit53deb0b8cd1899ec325eca93631b3e137bdd3ec3 (patch)
tree23894ed57040ea689e9f60243656e1889d39a275 /vendor/github.com/tdewolff/parse/strconv/int_test.go
parente1c56b2e53ba3c6f48d5e159d18ae59c180cc388 (diff)
Refactor assets bundler and split Javascript files
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},