Do not explicitly capture StandardError

This commit is contained in:
Markus Schirp 2013-01-09 23:03:01 +01:00
parent daa35eaecc
commit 356820c4af

View file

@ -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