X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F05-isa.t;fp=t%2F05-isa.t;h=0b41b72fd2caa7e641e4a7ee4c75f530c893b7f1;hb=f8e7797c12671e47664c32b6c00b5ee4c8993504;hp=3198fb15cdbbd05d2e61efe1ee162782741bb6a1;hpb=0a5166afdae1044a3722b5d241ecdc3228dbd370;p=gitmo%2FPackage-Stash.git 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;