fixing version numbers and writing the changelog
[gitmo/Class-MOP.git] / t / 101_InstanceCountingClass_test.t
index 9941c7d..0cc7b7a 100644 (file)
@@ -27,7 +27,7 @@ a simple demonstration of how to make a metaclass.
     
     sub new  {
         my $class = shift;
-        bless $class->meta->construct_instance(@_) => $class;
+        $class->meta->new_object(@_);
     }
     
     package Bar;