summaryrefslogtreecommitdiff
path: root/spec/tasks/config_lint_spec.rb
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-05-01 11:13:33 -0400
committerRobert Speicher <rspeicher@gmail.com>2017-05-01 11:13:33 -0400
commitd49768296ce596bbbbdf8412c362d9999ce822a4 (patch)
tree31a1e1250bdb8c2db3b7a7400a5a7c8f8141bd01 /spec/tasks/config_lint_spec.rb
parent0a556523cfee57e54e8e1227b818085c8d8c4ecc (diff)
downloadgitlab-ce-d49768296ce596bbbbdf8412c362d9999ce822a4.tar.gz
Auto-correct `RSpec/DescribedClass` violationsrs-described_class-cop-2
Diffstat (limited to 'spec/tasks/config_lint_spec.rb')
-rw-r--r--spec/tasks/config_lint_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/tasks/config_lint_spec.rb b/spec/tasks/config_lint_spec.rb
index c32f9a740b7..ed6c5b09663 100644
--- a/spec/tasks/config_lint_spec.rb
+++ b/spec/tasks/config_lint_spec.rb
@@ -5,11 +5,11 @@ describe ConfigLint do
let(:files){ ['lib/support/fake.sh'] }
it 'errors out if any bash scripts have errors' do
- expect { ConfigLint.run(files){ system('exit 1') } }.to raise_error(SystemExit)
+ expect { described_class.run(files){ system('exit 1') } }.to raise_error(SystemExit)
end
it 'passes if all scripts are fine' do
- expect { ConfigLint.run(files){ system('exit 0') } }.not_to raise_error
+ expect { described_class.run(files){ system('exit 0') } }.not_to raise_error
end
end