remove trailing whitespace
[gitmo/Moose.git] / t / 010_basics / 009_import_unimport.t
index 776e3a2..f956bee 100644 (file)
@@ -3,17 +3,16 @@
 use strict;
 use warnings;
 
-use Test::More tests => 43;
+use Test::More tests => 41;
 
 
 my @moose_exports = qw(
-    extends with 
-    has 
+    extends with
+    has
     before after around
     override
     augment
     super inner
-    make_immutable
 );
 
 {
@@ -37,8 +36,8 @@ ok(!Foo->can($_), '... Foo can no longer do ' . $_) for @moose_exports;
 # and check the type constraints as well
 
 my @moose_type_constraint_exports = qw(
-    type subtype as where message 
-    coerce from via 
+    type subtype as where message
+    coerce from via
     enum
     find_type_constraint
 );