Remove cruft
Dave Rolsky [Thu, 21 Oct 2010 19:59:36 +0000 (14:59 -0500)]
t/070_native_traits/013_array_coerce.t

index 78347fd..8cdd3f7 100644 (file)
@@ -144,12 +144,10 @@ my $foo = Foo->new;
 my $bar;
 TODO: {
     $bar = Bar->new(array => [ qw( a b c ) ]);
-    #print $bar->dump(3);
 
     todo_skip 'coercion in push dies here!', 1;
 
     $bar->push_array('d');
-    #print $bar->dump(3);
 
     is($bar->get_array(3)->thing, 'd', 'push coerces the array');