summaryrefslogtreecommitdiffstats
path: root/t/impl-selection
diff options
context:
space:
mode:
Diffstat (limited to 't/impl-selection')
-rw-r--r--t/impl-selection/basic-pp.t5
-rw-r--r--t/impl-selection/basic-xs.t5
2 files changed, 8 insertions, 2 deletions
diff --git a/t/impl-selection/basic-pp.t b/t/impl-selection/basic-pp.t
index 5c80d09..58ff523 100644
--- a/t/impl-selection/basic-pp.t
+++ b/t/impl-selection/basic-pp.t
@@ -277,7 +277,10 @@ is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::f
is_deeply(
$syms,
- { zork => *{ $Foo::{zork} }{HASH} },
+ {
+ zork => *{ $Foo::{zork} }{HASH},
+ bare => *{ $Foo::{bare} }{HASH},
+ },
"got the right ones",
);
}
diff --git a/t/impl-selection/basic-xs.t b/t/impl-selection/basic-xs.t
index cb46953..8612906 100644
--- a/t/impl-selection/basic-xs.t
+++ b/t/impl-selection/basic-xs.t
@@ -278,7 +278,10 @@ is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::f
is_deeply(
$syms,
- { zork => *{ $Foo::{zork} }{HASH} },
+ {
+ zork => *{ $Foo::{zork} }{HASH},
+ bare => *{ $Foo::{bare} }{HASH},
+ },
"got the right ones",
);
}