diff --git a/t/nqp/38-quotes.t b/t/nqp/38-quotes.t index 63fcd0d..e4ecea0 100644 --- a/t/nqp/38-quotes.t +++ b/t/nqp/38-quotes.t @@ -14,6 +14,6 @@ my $num := 5; ok( "xxx {3+$num} zzz" eq 'xxx 8 zzz', "basic closure interpolation" ); -ok( qq{xxx {3+$num} zzz} eq 'xxx 8 zzz', "basic qq{} closure interpolation" ); +ok( qq{xxx {3+$num} zzz} eq 'xxx 8 zzz', 'basic qq{} closure interpolation' );