aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask
diff options
context:
space:
mode:
authorMike McQuaid2018-01-17 10:42:43 +0000
committerMike McQuaid2018-01-17 10:42:43 +0000
commit1f48e17f1b2f681ea56b72b8d2c1eebdb77f2181 (patch)
treed6441603e1e8fb405b91ab1bb0e869c5a4af6a69 /Library/Homebrew/test/cask
parent8cd0d85afba1bd07a6af24ffca54518ec8ff0d1c (diff)
downloadbrew-1f48e17f1b2f681ea56b72b8d2c1eebdb77f2181.tar.bz2
rubocop: fix brew style warnings.
Diffstat (limited to 'Library/Homebrew/test/cask')
-rw-r--r--Library/Homebrew/test/cask/dsl_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Homebrew/test/cask/dsl_spec.rb b/Library/Homebrew/test/cask/dsl_spec.rb
index a17acfca6..cd296b5ab 100644
--- a/Library/Homebrew/test/cask/dsl_spec.rb
+++ b/Library/Homebrew/test/cask/dsl_spec.rb
@@ -232,8 +232,9 @@ describe Hbc::DSL, :cask do
expect(cask.caveats).to be_empty
cask = Hbc::Cask.new("cask-with-caveats") do
- def caveats; <<~EOS
- When you install this Cask, you probably want to know this.
+ def caveats
+ <<~EOS
+ When you install this Cask, you probably want to know this.
EOS
end
end