Fix a test
[gitmo/Mouse.git] / t / 020_attributes / 007_attribute_custom_metaclass.t
index 00256f7..5cdf82e 100644 (file)
@@ -57,7 +57,7 @@ use Test::Exception;
     use Mouse;
 
     ::lives_ok {
-        has 'bar' => (metaclass => 'Bar::Meta::Attribute');
+        has 'bar' => (metaclass => 'Bar::Meta::Attribute', is => 'bare');
     } '... the attribute metaclass need not be a Mouse::Meta::Attribute as long as it behaves';
 }