summaryrefslogtreecommitdiffstats
path: root/t/05-isa.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-09-18 20:18:20 -0500
committerJesse Luehrs <doy@tozt.net>2010-09-18 20:18:20 -0500
commit5d3589c862fc8593a95ac572b8eb20e97a593a0c (patch)
tree69ca8cd9b3658c235951d840c11c0da6299a897a /t/05-isa.t
parent759031e2653d734955eb57cf8fbac9e1ef8af3e3 (diff)
downloadpackage-stash-5d3589c862fc8593a95ac572b8eb20e97a593a0c.tar.gz
package-stash-5d3589c862fc8593a95ac572b8eb20e97a593a0c.zip
Revert "revert the vivication changes for now, i didn't mean to release them"
This reverts commit 44726d1abdc534e4ac6ddfc6d91d245c8dc0ebc7.
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 3198fb1..0b41b72 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_package_symbol('@ISA')} = @ISA;
+@{$stash->get_or_add_package_symbol('@ISA')} = @ISA;
isa_ok('Foo', 'Bar');
done_testing;