X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F020_attributes%2F031_delegation_and_modifiers.t;fp=t%2F020_attributes%2F031_delegation_and_modifiers.t;h=1e20b9305e99b48f1c3d3327dd18ddf08db06c76;hb=1808c2dab86d0317d10f70d3a7a923e97daf54bb;hp=78ab29188aa30c9f1d81632c8f01921cd62e3d61;hpb=6b584f6c4dc1c2108c1bc233caec49627b2cce04;p=gitmo%2FMoose.git diff --git a/t/020_attributes/031_delegation_and_modifiers.t b/t/020_attributes/031_delegation_and_modifiers.t index 78ab291..1e20b93 100644 --- a/t/020_attributes/031_delegation_and_modifiers.t +++ b/t/020_attributes/031_delegation_and_modifiers.t @@ -48,11 +48,11 @@ my $foo = Foo::Extended->new; isa_ok($foo, 'Foo::Extended'); isa_ok($foo, 'Foo'); -ok(!$foo->test, '... the test value has not been changed'); +ok(!$foo->test, 'the test value has not been changed'); -is($foo->baz, 'Bar::baz', '... got the right delegated method'); +is($foo->baz, 'Bar::baz', 'got the right delegated method'); -ok($foo->test, '... the test value has now been changed'); +ok($foo->test, 'the test value has now been changed');