Do not pass uncontrolled strings to sprintf
This commit is contained in:
parent
adc1551658
commit
afee23c8ac
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ module Mutant
|
|||
# @api private
|
||||
#
|
||||
def run
|
||||
status(mutation.identification)
|
||||
status('%s', mutation.identification)
|
||||
puts(details)
|
||||
end
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ module Mutant
|
|||
# @api private
|
||||
#
|
||||
def run
|
||||
info(object.identification)
|
||||
info('%s', object.identification)
|
||||
end
|
||||
|
||||
# Prunter for subject runners
|
||||
|
|
Loading…
Reference in a new issue