diff options
| author | Markus Reiter | 2017-06-01 16:06:51 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-06-02 19:22:05 +0200 |
| commit | 2d6ae61314558b383cfa641e2de0839d5606afca (patch) | |
| tree | 0da240a31c9dc147fc7998bd6fedd578aa022222 /Library/Homebrew/test/rubocops | |
| parent | 0731a68cde75206682ed972beb47930afa3c434e (diff) | |
| download | brew-2d6ae61314558b383cfa641e2de0839d5606afca.tar.bz2 | |
Re-revert "Fix operator spacing."
Diffstat (limited to 'Library/Homebrew/test/rubocops')
| -rw-r--r-- | Library/Homebrew/test/rubocops/formula_desc_cop_spec.rb | 6 |
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 |
