diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:23:48 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-07-19 16:23:48 +0900 |
commit | 80e2994434f3c840ce12546351ab9fd20cdd3aaa (patch) | |
tree | 41233a85d8b0d8eed84e25c4c28c6bd1cea4098b /t/110_bignum.t | |
parent | 8d2a41273a56a33a291d292c1fbee03cce290694 (diff) | |
download | perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.tar.gz perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.tar.bz2 perl-json-80e2994434f3c840ce12546351ab9fd20cdd3aaa.zip |
Imported Upstream version 4.03upstream/4.03
Diffstat (limited to 't/110_bignum.t')
-rw-r--r-- | t/110_bignum.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/110_bignum.t b/t/110_bignum.t index 044e0e6..2425131 100644 --- a/t/110_bignum.t +++ b/t/110_bignum.t @@ -1,5 +1,6 @@ use strict; +use warnings; use Test::More; BEGIN { plan tests => 9 }; @@ -20,7 +21,7 @@ my $fix = !$v ? '+' : ''; -my $json = new JSON; +my $json = JSON->new; $json->allow_nonref->allow_bignum(1); $json->convert_blessed->allow_blessed; |