summaryrefslogtreecommitdiffstats
path: root/t/05-isa.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-09-18 20:15:21 -0500
committerJesse Luehrs <doy@tozt.net>2010-09-18 20:15:21 -0500
commit44726d1abdc534e4ac6ddfc6d91d245c8dc0ebc7 (patch)
tree4706f0935996229d1fbc8387b500670f2f8edaf0 /t/05-isa.t
parentdc7dc3b9c67d63479e0aef011b1450ac359587b9 (diff)
downloadpackage-stash-44726d1abdc534e4ac6ddfc6d91d245c8dc0ebc7.tar.gz
package-stash-44726d1abdc534e4ac6ddfc6d91d245c8dc0ebc7.zip
revert the vivication changes for now, i didn't mean to release them
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;