diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-12-01 11:08:16 +0100 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-12-01 11:08:16 +0100 |
commit | d7bdb74fd5b60c17ffdff2405cd946b61d145a8c (patch) | |
tree | b760fcfc63dd1123534bc2f96f190b897b44e09b | |
parent | 085d0904d6357ee033016ab81a03d99432474a06 (diff) | |
download | perl-d7bdb74fd5b60c17ffdff2405cd946b61d145a8c.tar.gz |
Fix B test failure introduced in 6b7c6d9
-rw-r--r-- | ext/B/t/optree_constants.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/B/t/optree_constants.t b/ext/B/t/optree_constants.t index c0f49328ab..712704b771 100644 --- a/ext/B/t/optree_constants.t +++ b/ext/B/t/optree_constants.t @@ -213,10 +213,10 @@ my ($expect, $expect_nt) = (<<'EOT_EOT', <<'EONT_EONT'); # 8 <@> prtf sK ->9 # 2 <0> pushmark s ->3 # 3 <$> const[PV "myint %d mystr %s myfl %f pi %f\n"] s ->4 -# 4 <$> const[IV 42] s ->5 -# 5 <$> const[PV "hithere"] s ->6 -# 6 <$> const[NV 1.414213] s ->7 -# 7 <$> const[NV 3.14159] s ->8 +# 4 <$> const[IV 42] s* ->5 +# 5 <$> const[PV "hithere"] s* ->6 +# 6 <$> const[NV 1.414213] s* ->7 +# 7 <$> const[NV 3.14159] s* ->8 EOT_EOT # 9 <1> leavesub[1 ref] K/REFC,1 ->(end) # - <@> lineseq KP ->9 |