summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2013-08-26 11:35:21 +1000
committerTony Cook <tony@develop-help.com>2013-08-26 11:35:21 +1000
commit5f7c1602dfa694a4a6761e9e4fc077ce794f7ff0 (patch)
tree28572746dce07e28a42fcedf46c698513be1753d /ext/B
parent00c5962fbb62cd5bf08d879fd7d811d4774b839c (diff)
downloadperl-5f7c1602dfa694a4a6761e9e4fc077ce794f7ff0.tar.gz
[perl #119351] update the test note for the changed B::CV::GV test
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/t/b.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/t/b.t b/ext/B/t/b.t
index f1763b45bc..262baffe78 100644
--- a/ext/B/t/b.t
+++ b/ext/B/t/b.t
@@ -405,7 +405,7 @@ SKIP:
ok($cv, "make a B::CV from a lexical sub reference");
isa_ok($cv, "B::CV");
my $gv = $cv->GV;
- isa_ok($gv, "B::SPECIAL", "GV on a lexical sub is NULL");
+ isa_ok($gv, "B::SPECIAL", "GV on a lexical sub isa B::SPECIAL");
my $hek = $cv->NAME_HEK;
is($hek, "bar", "check the NAME_HEK");
}