Tidy code
Dave Rolsky [Fri, 29 Oct 2010 15:08:04 +0000 (10:08 -0500)]
t/070_native_traits/011_array_subtypes.t

index 4251cbd..1c30ad4 100644 (file)
@@ -170,7 +170,8 @@ my $foo = Foo->new;
 }
 
 {
-    my $expect = qr/\QAttribute (a4) does not pass the type constraint because: Validation failed for 'ArrayRef' with value invalid/;
+    my $expect
+        = qr/\QAttribute (a4) does not pass the type constraint because: Validation failed for 'ArrayRef' with value invalid/;
 
     like(
         exception { $foo->accessor_a4(0); },
@@ -179,7 +180,7 @@ my $foo = Foo->new;
     );
 
     like(
-        exception { $foo->accessor_a4(0 => 42); },
+        exception { $foo->accessor_a4( 0 => 42 ); },
         $expect,
         'invalid default is caught when trying to write via accessor'
     );