X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F800_shikabased%2F002-coerce_multi_class.t;h=db5a8a79f93b9908496cfee043a7b9fa746a817d;hb=6c4169429dd0a950b32ac8bdf9504a95217e57e1;hp=87450fe60b1298305190fdfc5aad6253aa6d3e05;hpb=99ba3cce247b4644516bb4435f74ac2ffb08fd39;p=gitmo%2FMouse.git 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;