diff options
Diffstat (limited to 't')
-rw-r--r-- | t/op/ref.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/op/ref.t b/t/op/ref.t index 83b5cb8a98..0a39f106c7 100644 --- a/t/op/ref.t +++ b/t/op/ref.t @@ -381,16 +381,16 @@ curr_test($test + 2); is( runperl( - stderr => 1, prog => 'sub DESTROY { print q-aaa- } bless \$a[0]' + stderr => 1, prog => 'sub DESTROY { print qq-aaa\n- } bless \$a[0]' ), - "aaa", 'DESTROY called on array elem' + "aaa\n", 'DESTROY called on array elem' ); is( runperl( stderr => 1, - prog => '{ bless \my@x; *a=sub{@x}}sub DESTROY { print q-aaa- }' + prog => '{ bless \my@x; *a=sub{@x}}sub DESTROY { print qq-aaa\n- }' ), - "aaa", + "aaa\n", 'DESTROY called on closure variable' ); |