do all the renaming that was discussed
[gitmo/Moose.git] / t / 070_attribute_helpers / 207_trait_string.t
index a6af0ad..4363025 100644 (file)
@@ -86,7 +86,7 @@ is( $page->string, '', "clear" );
 # check the meta ..
 
 my $string = $page->meta->get_attribute('string');
-does_ok( $string, 'Moose::AttributeHelpers::Trait::String' );
+does_ok( $string, 'Moose::Meta::Attribute::Trait::Native::String' );
 
 is(
     $string->type_constraint->name, 'Str',