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