summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/01-basic.t b/t/01-basic.t
index 7856f6e..d6d9b37 100644
--- a/t/01-basic.t
+++ b/t/01-basic.t
@@ -2,7 +2,7 @@
use strict;
use warnings;
use Test::More;
-use Test::Exception;
+use Test::Fatal;
use Eval::Closure;
@@ -12,7 +12,7 @@ use Eval::Closure;
);
ok($code, "got something");
- throws_ok { $code->() } qr/^called$/, "got the right thing";
+ like(exception { $code->() }, qr/^called$/, "got the right thing");
}
{