[SCM] libmessage-passing-perl Debian packaging branch, master, updated. debian/0.111-3-14-g44f6e88

Tomas Doran bobtfish at bobtfish.net
Mon May 6 11:57:25 UTC 2013


The following commit has been merged in the master branch:
commit 0bfc34f5912c63f1a192519ab10c636bb11d498c
Author: Tomas Doran <bobtfish at bobtfish.net>
Date:   Sun Jul 15 11:07:47 2012 +0100

    Fix isa test

diff --git a/lib/Message/Passing/Role/Input.pm b/lib/Message/Passing/Role/Input.pm
index aa464e1..4817782 100644
--- a/lib/Message/Passing/Role/Input.pm
+++ b/lib/Message/Passing/Role/Input.pm
@@ -7,7 +7,7 @@ use namespace::clean -except => 'meta';
 has output_to => (
     is => 'ro',
     required => 1,
-    ise => sub { blessed($_[0]) && $_[0]->can('consume') },
+    isa => sub { blessed($_[0]) && $_[0]->can('consume') },
     coerce => sub {
         my $val = shift;
         if (ref($val) eq 'HASH') {

-- 
libmessage-passing-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list