summaryrefslogtreecommitdiffstats
path: root/t/05-isa.t
diff options
context:
space:
mode:
Diffstat (limited to 't/05-isa.t')
-rw-r--r--t/05-isa.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/05-isa.t b/t/05-isa.t
index 0b41b72..ce852a6 100644
--- a/t/05-isa.t
+++ b/t/05-isa.t
@@ -1,6 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
+use lib 't/lib';
use Test::More;
use Package::Stash;
@@ -15,7 +16,7 @@ use Package::Stash;
my $stash = Package::Stash->new('Foo');
my @ISA = ('Bar');
-@{$stash->get_or_add_package_symbol('@ISA')} = @ISA;
+@{$stash->get_or_add_symbol('@ISA')} = @ISA;
isa_ok('Foo', 'Bar');
done_testing;