aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_utils.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-09-18 13:28:15 +0100
committerGitHub2016-09-18 13:28:15 +0100
commit59b7f16bfd9c1968aae0a2f1cd9a43d3d160d99f (patch)
tree17d2adec882cdeef36a8fd40d891fe7fe4021572 /Library/Homebrew/test/test_utils.rb
parent56541001a45ea58c54096bc42584c17d72b1415a (diff)
parent1bdbb0f462e4c3557bbcba0b203696bdcf025bb4 (diff)
downloadbrew-59b7f16bfd9c1968aae0a2f1cd9a43d3d160d99f.tar.bz2
Merge pull request #989 from MikeMcQuaid/rubocop-final
Rubocop: apply auto-corrections and don't use hash-rockets
Diffstat (limited to 'Library/Homebrew/test/test_utils.rb')
-rw-r--r--Library/Homebrew/test/test_utils.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/test/test_utils.rb b/Library/Homebrew/test/test_utils.rb
index fa66aefe2..c88c0f416 100644
--- a/Library/Homebrew/test/test_utils.rb
+++ b/Library/Homebrew/test/test_utils.rb
@@ -227,9 +227,9 @@ class UtilTests < Homebrew::TestCase
s = truncate_text_to_approximate_size(long_s, n)
assert_equal n, s.length
assert_match(/^x+#{Regexp.escape(glue)}x+$/, s)
- s = truncate_text_to_approximate_size(long_s, n, :front_weight => 0.0)
+ s = truncate_text_to_approximate_size(long_s, n, front_weight: 0.0)
assert_equal glue + ("x" * (n - glue.length)), s
- s = truncate_text_to_approximate_size(long_s, n, :front_weight => 1.0)
+ s = truncate_text_to_approximate_size(long_s, n, front_weight: 1.0)
assert_equal(("x" * (n - glue.length)) + glue, s)
end
@@ -237,8 +237,8 @@ class UtilTests < Homebrew::TestCase
ARGV.stubs(:homebrew_developer?).returns false
e = assert_raises(FormulaMethodDeprecatedError) do
odeprecated("method", "replacement",
- :caller => ["#{HOMEBREW_LIBRARY}/Taps/homebrew/homebrew-core/"],
- :die => true)
+ caller: ["#{HOMEBREW_LIBRARY}/Taps/homebrew/homebrew-core/"],
+ die: true)
end
assert_match "method", e.message
assert_match "replacement", e.message