From: Matt S Trout Date: Sat, 13 Feb 2010 18:46:34 +0000 (+0000) Subject: Fix can_ok check in t/dwarn.t to use a string so the can_ok resolves to a sub call... X-Git-Tag: v2.000~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f5e1b9be44ddd63e39ae297d47d0353f903534d9;p=p5sagit%2FData-Dumper-Concise.git Fix can_ok check in t/dwarn.t to use a string so the can_ok resolves to a sub call rather than an indirect object invocation --- diff --git a/t/dwarn.t b/t/dwarn.t index 334813a..32fc41b 100644 --- a/t/dwarn.t +++ b/t/dwarn.t @@ -7,4 +7,4 @@ use Test::More qw(no_plan); can_ok __PACKAGE__, qw{Dwarn DwarnS}; -can_ok Devel::Dwarn, qw{Dwarn DwarnS}; +can_ok 'Devel::Dwarn', qw{Dwarn DwarnS};