summaryrefslogtreecommitdiff
path: root/ext/XS-APItest
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-10-10 23:51:53 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-10-10 23:52:35 -0700
commitad6a4f4a732b6d612bcb45ce5faa794fa5f8f470 (patch)
treea3a6c50402109a8c68616edfcab67ec4982473a8 /ext/XS-APItest
parent1d2615b4c7e80af2a76441add35092ec4d81724f (diff)
downloadperl-ad6a4f4a732b6d612bcb45ce5faa794fa5f8f470.tar.gz
XS::APItest: s/justinc/justisa/
I meant to call this mro ‘just @ISA’, because it just uses @ISA and no super-superclasses. But I misnamed it. It has nothing to do with @INC.
Diffstat (limited to 'ext/XS-APItest')
-rw-r--r--ext/XS-APItest/APItest.xs2
-rw-r--r--ext/XS-APItest/t/mro.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs
index 27c587af58..ff2b9bbc77 100644
--- a/ext/XS-APItest/APItest.xs
+++ b/ext/XS-APItest/APItest.xs
@@ -1156,7 +1156,7 @@ BOOT:
newXS("XS::APItest::XSUB::XS_VERSION_empty", XS_XS__APItest__XSUB_XS_VERSION_empty, __FILE__);
newXS("XS::APItest::XSUB::XS_APIVERSION_invalid", XS_XS__APItest__XSUB_XS_APIVERSION_invalid, __FILE__);
mymro.resolve = myget_linear_isa;
- mymro.name = "justinc";
+ mymro.name = "justisa";
mymro.length = 7;
mymro.kflags = 0;
mymro.hash = 0;
diff --git a/ext/XS-APItest/t/mro.t b/ext/XS-APItest/t/mro.t
index 42dd6614e4..3385913279 100644
--- a/ext/XS-APItest/t/mro.t
+++ b/ext/XS-APItest/t/mro.t
@@ -6,7 +6,7 @@ use Test::More;
plan tests => 1;
use mro;
-mro::set_mro(AA => 'justinc');
+mro::set_mro(AA => 'justisa');
@AA::ISA = qw "BB CC";