DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 300_immutable / 009_buildargs.t
index b8a7527..1df3fca 100644 (file)
@@ -34,13 +34,13 @@ foreach my $class qw(Foo Bar) {
     is( $class->new( 37 )->bar, 37, "single arg" );
     {
         my $o = $class->new(bar => 42, baz => 47);
-        is($o->bar, 42, '... got the right bar');
-        is($o->baz, 47, '... got the right bar');
+        is($o->bar, 42, 'got the right bar');
+        is($o->baz, 47, 'got the right bar');
     }
     {
         my $o = $class->new(42, baz => 47);
-        is($o->bar, 42, '... got the right bar');
-        is($o->baz, 47, '... got the right bar');
+        is($o->bar, 42, 'got the right bar');
+        is($o->baz, 47, 'got the right bar');
     }
 }