more-tweaks
[gitmo/Moose.git] / t / 050_util_type_constraints.t
index 67c28f7..9216a7d 100644 (file)
@@ -23,7 +23,7 @@ subtype NaturalLessThanTen
        => as Natural
        => where { $_ < 10 };
        
-Moose::Util::TypeConstraints::export_type_contstraints_as_functions();
+Moose::Util::TypeConstraints->export_type_contstraints_as_functions();
 
 is(Num(5), 5, '... this is a Num');
 ok(!defined(Num('Foo')), '... this is not a Num');