From: Chris Prather <chris@prather.org>
Date: Mon, 15 Feb 2010 02:51:22 +0000 (-0500)
Subject: kill tabs in some tests
X-Git-Tag: 0.99~11
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=46fdd900d7b7049d934563c996a9b3689badd9d7;p=gitmo%2FMoose.git

kill tabs in some tests
---

diff --git a/t/040_type_constraints/005_util_type_coercion.t b/t/040_type_constraints/005_util_type_coercion.t
index 4d64909..49f9069 100644
--- a/t/040_type_constraints/005_util_type_coercion.t
+++ b/t/040_type_constraints/005_util_type_coercion.t
@@ -7,7 +7,7 @@ use Test::More;
 use Test::Exception;
 
 BEGIN {
-	use_ok('Moose::Util::TypeConstraints');
+    use_ok('Moose::Util::TypeConstraints');
 }
 
 {
diff --git a/t/040_type_constraints/030_class_subtypes.t b/t/040_type_constraints/030_class_subtypes.t
index bce023e..91c61c1 100644
--- a/t/040_type_constraints/030_class_subtypes.t
+++ b/t/040_type_constraints/030_class_subtypes.t
@@ -26,8 +26,8 @@ my $Int = find_type_constraint('Int');
 ok $Int, 'Got a good type contstraint';
 
 my $parent  = Test::Moose::Meta::TypeConstraint::AnySubType->new({
-		name => "Test::Moose::Meta::TypeConstraint::AnySubType" ,
-		parent => $Int,
+        name => "Test::Moose::Meta::TypeConstraint::AnySubType" ,
+        parent => $Int,
 });
 
 ok $parent, 'Created type constraint';