diff options
| author | Markus Reiter | 2017-05-30 00:47:07 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-05-31 19:53:41 +0200 |
| commit | d34ba7395bbbc49f933cb244323cd20e180b0609 (patch) | |
| tree | 918fe00d317e9a87e1b22bd98f194341056d3aa5 /Library/Homebrew/test | |
| parent | f9e8d8430154e3480d5255e35b802a46f9168b5a (diff) | |
| download | brew-d34ba7395bbbc49f933cb244323cd20e180b0609.tar.bz2 | |
Fix operator spacing.
Diffstat (limited to 'Library/Homebrew/test')
| -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 |
