Fix Mutant::Mutation::Filter::Regexp

This commit is contained in:
Ian MacLeod 2013-03-02 22:43:33 -08:00
parent 96af70ccee
commit 7b6451cc0b

View file

@ -17,7 +17,7 @@ module Mutant
# @api private
#
def match?(mutation)
!!@regexp.match =~ mutation.identification
!!(@regexp =~ mutation.identification)
end
private