summaryrefslogtreecommitdiffstats
path: root/t/004-get.t
diff options
context:
space:
mode:
Diffstat (limited to 't/004-get.t')
-rw-r--r--t/004-get.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/004-get.t b/t/004-get.t
index c38ae65..15e252f 100644
--- a/t/004-get.t
+++ b/t/004-get.t
@@ -3,10 +3,10 @@ use strict;
use warnings;
use Test::More;
-use Stash::Manip;
+use Package::Stash;
{
- my $stash = Stash::Manip->new('Foo');
+ my $stash = Package::Stash->new('Foo');
my $val = $stash->get_package_symbol('%foo');
is(ref($val), 'HASH', "got something");
$val->{bar} = 1;
@@ -15,7 +15,7 @@ use Stash::Manip;
}
{
- my $stash = Stash::Manip->new('Bar');
+ my $stash = Package::Stash->new('Bar');
my $val = $stash->get_package_symbol('@foo');
is(ref($val), 'ARRAY', "got something");
push @$val, 1;