aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMarkus Reiter2016-10-04 22:44:19 +0200
committerGitHub2016-10-04 22:44:19 +0200
commita7a2aef803afbadd49a281b840c0bf9083fcf71e (patch)
treeffe336ab8f53de98d4e06685a2c21452976b2605 /Library/Homebrew/test
parentcafe1497808ef1ddb002061665ad606aa2340d10 (diff)
parentddf5583208e473ef00447834a3a712411e61e190 (diff)
downloadbrew-a7a2aef803afbadd49a281b840c0bf9083fcf71e.tar.bz2
Merge pull request #1224 from reitermarkus/refactor-extensions
Refactor Cask’s extensions.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_diagnostic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_diagnostic.rb b/Library/Homebrew/test/test_diagnostic.rb
index b9b995f0f..33cf27b74 100644
--- a/Library/Homebrew/test/test_diagnostic.rb
+++ b/Library/Homebrew/test/test_diagnostic.rb
@@ -16,7 +16,7 @@ class DiagnosticChecksTest < Homebrew::TestCase
def test_inject_file_list
assert_equal "foo:\n",
@checks.inject_file_list([], "foo:\n")
- assert_equal "foo:\n /a\n /b\n",
+ assert_equal "foo:\n /a\n /b\n",
@checks.inject_file_list(%w[/a /b], "foo:\n")
end