Skip to content

Commit 473e73e

Browse files
committed
[v6.d REVIEW] Don't stringify $/.Int in test
Orig: b75fca996
1 parent 4fe5b7d commit 473e73e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S05-capture/match-object.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ is $/.pairs.elems, 0, '.pairs (empty)';
2525
is $/.kv.elems, 0, '.kv (empty)';
2626

2727
'1200' ~~ /\d+/;
28-
is $/.Int, 1200, '.Int with small value';
28+
is-deeply $/.Int, 1200, '.Int with small value';
2929
'12000000000000000000000000000000000000' ~~ /\d+/;
30-
is $/.Int, 12000000000000000000000000000000000000, '.Int with big value';
30+
is-deeply $/.Int, 12000000000000000000000000000000000000, '.Int with big value';
3131

3232

3333
# prematch and postmatch for zero-width matches,

0 commit comments

Comments
 (0)