From: Dave Rolsky Date: Wed, 1 Jul 2009 17:44:36 +0000 (-0500) Subject: Add some parens to is() X-Git-Tag: 0.89~5^2~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=61388df7e6bd7cfdbaa8c7ef1c94769c803cb853;p=gitmo%2FClass-MOP.git Add some parens to is() --- diff --git a/t/088_immutable_role_application_bug.t b/t/088_immutable_role_application_bug.t index b610a44..ef29669 100644 --- a/t/088_immutable_role_application_bug.t +++ b/t/088_immutable_role_application_bug.t @@ -30,6 +30,6 @@ BEGIN { TODO: { local $TODO = 'This broke as of 07302fb'; - is $My::Meta::Trait::FAILED, 0, 'Can find method'; + is( $My::Meta::Trait::FAILED, 0, 'Can find method' ); }