summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-08-27 11:15:51 -0500
committerJesse Luehrs <doy@tozt.net>2010-08-27 11:23:24 -0500
commitf8e7797c12671e47664c32b6c00b5ee4c8993504 (patch)
treeccf7d4177cd3d6db35e95f7810ca3c722e1ad5a0 /t
parent0a5166afdae1044a3722b5d241ecdc3228dbd370 (diff)
downloadpackage-stash-f8e7797c12671e47664c32b6c00b5ee4c8993504.tar.gz
package-stash-f8e7797c12671e47664c32b6c00b5ee4c8993504.zip
make the ISA special-casing more sane
Diffstat (limited to '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;