Revert most of the conversion to Test::Fatal so we can redo it
[gitmo/Moose.git] / t / 060_compat / 005_composite_metaroles.t
index 8a3392f..570ce30 100755 (executable)
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use Test::More;
-use Test::Fatal;
+use Test::Exception;
 use Test::Moose;
 
 {
@@ -31,7 +31,7 @@ use Test::Moose;
         for => __PACKAGE__,
         class_metaroles => { class => ['Foo::Role', 'Bar::Role'] },
     );
-    ::ok ! ::exception { extends 'Parent' };
+    ::lives_ok { extends 'Parent' };
 }
 
 with_immutable {