summaryrefslogtreecommitdiff
path: root/t/110_bignum.t
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2022-07-19 16:23:48 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2022-07-19 16:23:48 +0900
commit80e2994434f3c840ce12546351ab9fd20cdd3aaa (patch)
tree41233a85d8b0d8eed84e25c4c28c6bd1cea4098b /t/110_bignum.t
parent8d2a41273a56a33a291d292c1fbee03cce290694 (diff)
downloadperl-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.t3
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;