lib/inspec/reporters/base.rb in inspec-4.3.2 vs lib/inspec/reporters/base.rb in inspec-4.6.3
- old
+ new
@@ -3,10 +3,10 @@
attr_reader :run_data
def initialize(config)
@config = config
@run_data = config[:run_data]
- @output = ''
+ @output = ""
end
def output(str, newline = true)
@output << str
@output << "\n" if newline