diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/test/test_audit.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_audit.rb b/Library/Homebrew/test/test_audit.rb index 98ab780b4..2725f906e 100644 --- a/Library/Homebrew/test/test_audit.rb +++ b/Library/Homebrew/test/test_audit.rb @@ -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 |
