From: Dave Rolsky Date: Sat, 12 Sep 2009 23:20:58 +0000 (-0500) Subject: Fix test description X-Git-Tag: 0.93~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9914477f11e555e8718f872834d512e3e7744f56;p=gitmo%2FClass-MOP.git Fix test description --- diff --git a/t/083_load_class.t b/t/083_load_class.t index 76be045..fb802bf 100644 --- a/t/083_load_class.t +++ b/t/083_load_class.t @@ -35,7 +35,7 @@ do { { local $@; eval { Class::MOP::load_class('Class') }; - ok( ! $@, 'load_class never dies' ); + ok( ! $@, 'load_class does not die if the package is already defined' ); } ok( !Class::MOP::does_metaclass_exist("Class"), "no metaclass for non MOP class" );