DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 020_attributes / 020_trigger_and_coerce.t
index 182d03d..5c51639 100644 (file)
@@ -28,7 +28,7 @@ use Test::Exception;
         coerce  => 1,
         trigger => sub {
             my ( $self, $val ) = @_;
-            ::pass('... trigger is being called');
+            ::pass('trigger is being called');
             ::isa_ok( $self->closing_date, 'Fake::DateTime' );
             ::isa_ok( $val,                'Fake::DateTime' );
         }
@@ -44,7 +44,7 @@ use Test::Exception;
 }
 
 Mortgage->meta->make_immutable;
-ok( Mortgage->meta->is_immutable, '... Mortgage is now immutable' );
+ok( Mortgage->meta->is_immutable, 'Mortgage is now immutable' );
 
 {
     my $mtg = Mortgage->new( closing_date => 'yesterday' );