test/test_audit: fix rubocop style.

This commit is contained in:
Mike McQuaid 2016-09-27 13:02:07 +01:00
parent 47fe231552
commit 776785459b

View File

@ -67,7 +67,9 @@ class FormulaAuditorTests < Homebrew::TestCase
def formula_auditor(name, text, options = {})
path = Pathname.new "#{@dir}/#{name}.rb"
path.open("w") { |f| f.write text }
path.open("w") do |f|
f.write text
end
FormulaAuditor.new Formulary.factory(path), options
end