Test fix
[gitmo/Mouse.git] / t / 030_roles / 019_build.t
old mode 100755 (executable)
new mode 100644 (file)
index 475e4fb..684443a
@@ -5,6 +5,7 @@ use Test::More;
 BEGIN {
     eval "use Test::Output;";
     plan skip_all => "Test::Output is required for this test" if $@;
+
     plan tests => 8;
 }
 
@@ -40,7 +41,7 @@ do {
     use Mouse;
 
     ::stderr_is {
-        with 'TestRole' => { excludes => 'BUILD' };
+        with 'TestRole' => { -excludes => 'BUILD' };
     } '';
 
     sub BUILD { push @CALLS, 'ExplicitClassWithBUILD::BUILD' }