X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F018_anon_class.t;h=ad048ebeb9d3c7d1f2341fdb1d92787cec3d7b9e;hb=c23184fc39306590f9e481d76c199020a638bb28;hp=1eb3aa6f5aa57dd1a2d975953039cf08823a0b1e;hpb=9363ea893ea47db99690a480cb163be298e3f1d2;p=gitmo%2FClass-MOP.git diff --git a/t/018_anon_class.t b/t/018_anon_class.t index 1eb3aa6..ad048eb 100644 --- a/t/018_anon_class.t +++ b/t/018_anon_class.t @@ -49,7 +49,7 @@ my $instance; ok($anon_class->has_method('foo'), '... we have a foo method now'); $instance = $anon_class->new_object(); - isa_ok($instance, $anon_class->name); + isa_ok($instance, $anon_class->name); isa_ok($instance, 'Foo'); is($instance->foo, '__ANON__::foo', '... got the right return value of our foo method');