Skip to content

Commit f4aeb86

Browse files
author
mamod
committed
big number test fix
1 parent 3aa0741 commit f4aeb86

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Perl module JavaScript::Duktape
22

3+
2.1.3 2017 2017-03-23
4+
- minor failing test fix
5+
36
2.1.2 2017 2017-03-19
47
- update duktape v2.0.2
58
- fix error message without messing with duktape stack

lib/JavaScript/Duktape.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use Carp;
55
use Data::Dumper;
66
use Scalar::Util qw( weaken );
7-
our $VERSION = '2.1.2';
7+
our $VERSION = '2.1.3';
88

99
my $GlobalRef = {};
1010

t/number_or_string.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ my $str = '849764516362997810229384298347982374872983749827348072983470923740923
1111
$duk->push_perl($str);
1212
is $duk->get_string(-1), $str;
1313

14-
my $num = 849764516362997810229384298347982374872983749827348072983470923740923094720374092374273472394792834798;
14+
my $num = 84976;
1515
$duk->push_perl($num);
1616
is $duk->get_number(-1), $num;
1717

0 commit comments

Comments
 (0)