diff options
Diffstat (limited to 'ext/B/t/b.t')
-rw-r--r-- | ext/B/t/b.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/t/b.t b/ext/B/t/b.t index 76b70896be..c382b421c9 100644 --- a/ext/B/t/b.t +++ b/ext/B/t/b.t @@ -483,8 +483,8 @@ SKIP: { my $first = $lineseq->first; my $second = $first->sibling; is(ref $second->sibling, "B::NULL", 'op_parent: second sibling is null'); - is($first->lastsib, 0 , 'op_parent: first sibling: !lastsib'); - is($second->lastsib, 1, 'op_parent: second sibling: lastsib'); + is($first->moresib, 1 , 'op_parent: first sibling: moresib'); + is($second->moresib, 0, 'op_parent: second sibling: !moresib'); is($$lineseq, ${$first->parent}, 'op_parent: first sibling okay'); is($$lineseq, ${$second->parent}, 'op_parent: second sibling okay'); } |