summaryrefslogtreecommitdiffstats
path: root/t/05-isa.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-10-31 10:41:56 -0500
committerJesse Luehrs <doy@tozt.net>2010-10-31 10:56:09 -0500
commit67b1704808e62f27210fe992df9c45b232fe9d5b (patch)
tree19e2f7a922593fa69f3e81a5a41293e0bb86a091 /t/05-isa.t
parent23093e2990bf64f03ad844e7b08fffa34ead8510 (diff)
downloadpackage-stash-67b1704808e62f27210fe992df9c45b232fe9d5b.tar.gz
package-stash-67b1704808e62f27210fe992df9c45b232fe9d5b.zip
revert vivication changes for now again0.13
Diffstat (limited to 't/05-isa.t')
-rw-r--r--t/05-isa.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/05-isa.t b/t/05-isa.t
index 0b41b72..3198fb1 100644
--- a/t/05-isa.t
+++ b/t/05-isa.t
@@ -15,7 +15,7 @@ use Package::Stash;
my $stash = Package::Stash->new('Foo');
my @ISA = ('Bar');
-@{$stash->get_or_add_package_symbol('@ISA')} = @ISA;
+@{$stash->get_package_symbol('@ISA')} = @ISA;
isa_ok('Foo', 'Bar');
done_testing;