aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMarkus Reiter2017-06-01 08:52:49 +0200
committerGitHub2017-06-01 08:52:49 +0200
commit63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b (patch)
tree918fe00d317e9a87e1b22bd98f194341056d3aa5 /Library/Homebrew/test
parentf9e8d8430154e3480d5255e35b802a46f9168b5a (diff)
parentd34ba7395bbbc49f933cb244323cd20e180b0609 (diff)
downloadbrew-63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b.tar.bz2
Merge pull request #2698 from reitermarkus/operator-style
Fix operator spacing.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb b/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb
index bc92291af..f6436d6a3 100644
--- a/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb
+++ b/Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb
@@ -31,7 +31,7 @@ describe RuboCop::Cop::FormulaAuditStrict::Desc do
source = <<-EOS.undent
class Foo < Formula
url 'http://example.com/foo-1.0.tgz'
- desc '#{"bar"*30}'
+ desc '#{"bar" * 30}'
end
EOS
@@ -55,8 +55,8 @@ describe RuboCop::Cop::FormulaAuditStrict::Desc do
source = <<-EOS.undent
class Foo < Formula
url 'http://example.com/foo-1.0.tgz'
- desc '#{"bar"*10}'\
- '#{"foo"*21}'
+ desc '#{"bar" * 10}'\
+ '#{"foo" * 21}'
end
EOS