Fix test description
Dave Rolsky [Fri, 29 Oct 2010 21:30:57 +0000 (16:30 -0500)]
t/070_native_traits/050_trait_hash.t

index 77bd39a..107b851 100644 (file)
@@ -178,9 +178,13 @@ sub run_tests {
 
         $obj->option_accessor( size => 42 );
 
-        like( exception {
-            $obj->option_accessor;
-        }, qr/Cannot call accessor without at least 1 argument/, '... options added okay with defaults' );
+        like(
+            exception {
+                $obj->option_accessor;
+            },
+            qr/Cannot call accessor without at least 1 argument/,
+            'error when calling accessor with no arguments'
+        );
 
         is_deeply(
             $obj->options, { quantity => 4, size => 42 },