From: Stevan Little <stevan.little@iinteractive.com>
Date: Mon, 27 Nov 2006 16:43:58 +0000 (+0000)
Subject: bar
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=671206bd4f61765167b8612d07c95adf7c4ece8c;p=gitmo%2FClass-MOP.git

bar
---

diff --git a/Changes b/Changes
index aee6cb0..45c1b91 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Class-MOP.
 
+0.37_002
+    * /t 
+      - bad name in a test, causing meaningless failuress. 
+        No other changes.
+
 0.37_001
     
     ~~ GLOBAL CHANGES ~~
diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm
index e2b11bd..94855c5 100644
--- a/lib/Class/MOP.pm
+++ b/lib/Class/MOP.pm
@@ -13,7 +13,7 @@ use Class::MOP::Method;
 
 use Class::MOP::Immutable;
 
-our $VERSION   = '0.37_001';
+our $VERSION   = '0.37_002';
 our $AUTHORITY = 'cpan:STEVAN';
 
 {
diff --git a/t/072_immutable_w_constructors.t b/t/072_immutable_w_constructors.t
index b8a07db..70a59d1 100644
--- a/t/072_immutable_w_constructors.t
+++ b/t/072_immutable_w_constructors.t
@@ -8,7 +8,7 @@ use Test::Exception;
 
 BEGIN {
     use_ok('Class::MOP');
-    use_ok('Class::MOP::Class::Immutable');    
+    use_ok('Class::MOP::Immutable');    
 }
 
 {