From 356820c4af0b96e0d4d83ea762113d0b68cb34e4 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Wed, 9 Jan 2013 23:03:01 +0100 Subject: [PATCH] Do not explicitly capture StandardError --- lib/mutant/killer/forking.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mutant/killer/forking.rb b/lib/mutant/killer/forking.rb index 02eba876..4fc864cf 100644 --- a/lib/mutant/killer/forking.rb +++ b/lib/mutant/killer/forking.rb @@ -44,7 +44,7 @@ module Mutant begin killer = @killer.new(strategy, mutation) Kernel.exit(killer.fail? ? 1 : 0) - rescue StandardError + rescue Kernel.exit(1) end end