summaryrefslogtreecommitdiff
path: root/t/11_protected_method.t
diff options
context:
space:
mode:
Diffstat (limited to 't/11_protected_method.t')
-rw-r--r--t/11_protected_method.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/11_protected_method.t b/t/11_protected_method.t
index a7ef35f..dca8176 100644
--- a/t/11_protected_method.t
+++ b/t/11_protected_method.t
@@ -38,8 +38,7 @@ with_immutable {
isa_ok( $bar, 'Bar' );
is $bar->baz(), 'baz', "... got the good value from &bar";
- is scalar @{ $foo->meta->local_protected_methods }, 1,
- '... got one protected method';
+ is $foo->meta->_count_protected_methods, 1, "... got one protected method";
}
(qw/Foo Bar/);