diff options
author | Robert Speicher <rspeicher@gmail.com> | 2017-08-10 19:22:59 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2017-08-10 19:22:59 -0400 |
commit | 4ef10795ce5e24dc0f905daeb7236fe707a8c195 (patch) | |
tree | c996061a27e04cb7e1243ff8ba9d708959fe1a62 /spec/bin | |
parent | ad3c1573a5c6e94d37d9982f90d9d658718d3294 (diff) | |
download | gitlab-ce-4ef10795ce5e24dc0f905daeb7236fe707a8c195.tar.gz |
Fix Layout/SpaceBeforeBlockBraces violation in bin/changelog_spec
Diffstat (limited to 'spec/bin')
-rw-r--r-- | spec/bin/changelog_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bin/changelog_spec.rb b/spec/bin/changelog_spec.rb index 11cbe70ad29..6d8b9865dcb 100644 --- a/spec/bin/changelog_spec.rb +++ b/spec/bin/changelog_spec.rb @@ -83,7 +83,7 @@ describe 'bin/changelog' do allow($stdin).to receive(:getc).and_return(type) expect do expect do - expect{ described_class.read_type }.to raise_error(SystemExit) + expect { described_class.read_type }.to raise_error(SystemExit) end.to output("Invalid category index, please select an index between 1 and 7\n").to_stderr end.to output.to_stdout end |