ExtUtils::MakeMaker 6.10_04 -> 6.10_05
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / 00compile.t
index 459a0eb..5eb015b 100644 (file)
@@ -32,7 +32,7 @@ plan tests => scalar @modules * 2;
 foreach my $file (@modules) {
     # 5.8.0 has a bug about require alone in an eval.  Thus the extra
     # statement.
-    eval q{ require($file); 1 };
+    eval { require($file); 1 };
     is( $@, '', "require $file" );
 
     SKIP: {