renamed helper_type => _helper_type
[gitmo/Moose.git] / t / 070_attribute_helpers / 011_counter_with_defaults.t
index 09fc69a..f52ecb2 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 14;
+use Test::More tests => 13;
 use Test::Moose;
 
 BEGIN {
@@ -45,8 +45,6 @@ is($page->counter, 0, '... got the original value');
 my $counter = $page->meta->get_attribute('counter');
 does_ok($counter, 'Moose::AttributeHelpers::Trait::Counter');
 
-is($counter->helper_type, 'Num', '... got the expected helper type');
-
 is($counter->type_constraint->name, 'Num', '... got the expected default type constraint');
 
 is_deeply($counter->handles, {