Remove unneded constant qualifiers
This commit is contained in:
parent
5903214033
commit
12abeff033
3 changed files with 4 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
|||
---
|
||||
threshold: 18
|
||||
total_score: 1233
|
||||
total_score: 1236
|
||||
|
|
|
@ -31,8 +31,8 @@ module Mutant
|
|||
# @api private
|
||||
#
|
||||
def generated
|
||||
Mutant::Mutator.each(node).map do |node|
|
||||
Mutant::Mutation::Evil.new(self, node)
|
||||
Mutator.each(node).map do |node|
|
||||
Mutation::Evil.new(self, node)
|
||||
end
|
||||
end
|
||||
memoize :generated
|
||||
|
|
|
@ -176,7 +176,7 @@ module Mutant
|
|||
# @api private
|
||||
#
|
||||
def active_subject_results
|
||||
active_mutation_jobs = active_jobs.select { |job| job.payload.kind_of?(Mutant::Mutation) }
|
||||
active_mutation_jobs = active_jobs.select { |job| job.payload.kind_of?(Mutation) }
|
||||
active_subjects = active_mutation_jobs.map(&:payload).flat_map(&:subject).to_set
|
||||
|
||||
payload.subject_results.select do |subject_result|
|
||||
|
|
Loading…
Reference in a new issue