From: Rafael Garcia-Suarez Date: Sun, 28 Feb 2010 22:47:19 +0000 (+0100) Subject: Un-TODO warning test X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=efbe327085cc15510d8c261772e9ac21be3635de;p=p5sagit%2Fp5-mst-13.2.git Un-TODO warning test --- diff --git a/dist/Safe/t/safesort.t b/dist/Safe/t/safesort.t index 991884d..797e155 100644 --- a/dist/Safe/t/safesort.t +++ b/dist/Safe/t/safesort.t @@ -57,6 +57,5 @@ is $@, 42, 'successful closure call should not alter $@'; local $SIG{__WARN__} = sub { $warns++ }; ok !eval { $die_func->("died\n"); 1 }, 'should die'; is $@, "died\n", '$@ should be set correctly'; - local $TODO = "Shouldn't warn"; is $warns, 0; }