From: Dave Rolsky Date: Fri, 25 Dec 2009 15:41:32 +0000 (-0600) Subject: Add parens to has's attr definition X-Git-Tag: 0.22~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Singleton.git;a=commitdiff_plain;h=089ff853cafa20edf9eb81b160741487696d66cb Add parens to has's attr definition --- diff --git a/t/006-cooperative.t b/t/006-cooperative.t index ed5d2c0..ccc2695 100644 --- a/t/006-cooperative.t +++ b/t/006-cooperative.t @@ -18,7 +18,7 @@ plan 'no_plan'; use MooseX::Singleton; use MooseX::StrictConstructor; - has 'attrib' => is => 'rw'; + has 'attrib' => ( is => 'rw' ); } throws_ok {