Remove unneeded double negation
This commit is contained in:
parent
12423d42b7
commit
77485ce331
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ module Mutant
|
|||
:debug => debug?,
|
||||
:matcher => matcher,
|
||||
:filter => filter,
|
||||
:fail_fast => !!@fail_fast,
|
||||
:fail_fast => @fail_fast,
|
||||
:strategy => strategy,
|
||||
:reporter => reporter
|
||||
)
|
||||
|
@ -83,7 +83,7 @@ module Mutant
|
|||
# @api private
|
||||
#
|
||||
def debug?
|
||||
!!@debug
|
||||
@debug
|
||||
end
|
||||
|
||||
# Return mutation filter
|
||||
|
|
Loading…
Add table
Reference in a new issue