We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8e1773 commit ae21dc4Copy full SHA for ae21dc4
t/moar/02-qast-references.t
@@ -425,7 +425,7 @@ test_qast_result(
425
QAST::Op.new(
426
:op<bind>,
427
QAST::Var.new( :name<strloc>, :scope<lexical> ),
428
- QAST::SVal.new( :value('6 cute') )
+ QAST::SVal.new( :value(' 6 ') )
429
),
430
QAST::Op.new( :op<bind>,
431
QAST::Var.new( :name<numref>, :scope<lexicalref> ),
@@ -473,7 +473,7 @@ test_qast_result(
473
474
ok(nqp::atpos($r, 0) eq '7', 'can use int lexicalref as str');
475
ok(nqp::atpos($r, 1) eq '3.14', 'can use num lexicalref as str');
476
- ok(nqp::atpos($r, 2) eq '6 cute', 'can use str lexicalref as str');
+ ok(nqp::atpos($r, 2) eq ' 6 ', 'can use str lexicalref as str');
477
}
478
);
479
0 commit comments