From: Dave Rolsky <autarch@urth.org>
Date: Thu, 21 Oct 2010 19:59:36 +0000 (-0500)
Subject: Remove cruft
X-Git-Tag: 1.18~77
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ce659c476d522c1aab06dedaa1dab85ddeab33e8;p=gitmo%2FMoose.git

Remove cruft
---

diff --git a/t/070_native_traits/013_array_coerce.t b/t/070_native_traits/013_array_coerce.t
index 78347fd..8cdd3f7 100644
--- a/t/070_native_traits/013_array_coerce.t
+++ b/t/070_native_traits/013_array_coerce.t
@@ -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');