From: Shawn M Moore Date: Mon, 22 Dec 2008 03:03:30 +0000 (+0000) Subject: HashRefa looks like a typo X-Git-Tag: 0.19~92 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6c4169429dd0a950b32ac8bdf9504a95217e57e1;p=gitmo%2FMouse.git HashRefa looks like a typo --- diff --git a/t/800_shikabased/002-coerce_multi_class.t b/t/800_shikabased/002-coerce_multi_class.t index 87450fe..db5a8a7 100644 --- a/t/800_shikabased/002-coerce_multi_class.t +++ b/t/800_shikabased/002-coerce_multi_class.t @@ -69,12 +69,12 @@ eval { use Mouse::Util::TypeConstraints; coerce 'Headers' => - from 'HashRefa' => via { + from 'XXX' => via { Request::Headers->new(%{ $_ }); }, ; }; -like $@, qr/Could not find the type constraint \(HashRefa\) to coerce from/; +like $@, qr/Could not find the type constraint \(XXX\) to coerce from/; eval { package Request;