0.41
Stevan Little [Sun, 15 Jul 2007 17:34:46 +0000 (17:34 +0000)]
t/003_methods.t

index c243c62..5406265 100644 (file)
@@ -84,7 +84,7 @@ is(Foo->foo(), 'Foo::foo', '... Foo->foo() returns "Foo::foo"');
 
 # now check all our other items ...
 
-if (!$Foo->has_method('FOO_CONSTANT')) {
+if ($Foo->has_method('FOO_CONSTANT')) {
     pass('... Foo->has_method(FOO_CONSTANT) (defined w/ use constant)');
 }
 else {