Revert most of the conversion to Test::Fatal so we can redo it
[gitmo/Moose.git] / t / 300_immutable / 003_immutable_meta_class.t
index ae5b844..1a1b662 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 
 use Test::More;
-use Test::Fatal;
+use Test::Exception;
 
 
 {
@@ -20,8 +20,8 @@ use Test::Fatal;
     );
 }
 
-ok ! exception {
+lives_ok {
     My::Meta->meta()->make_immutable(debug => 0)
-}, '... can make a meta class immutable';
+} '... can make a meta class immutable';
 
 done_testing;