diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-16 16:13:41 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-16 16:13:41 -0600 |
| commit | 91780ac0677697f1205c98b125ffc1db4a9629f9 (patch) | |
| tree | 99dc8c6d30088bc4c95268c0ecd4789fa70910e1 /spec/support | |
| parent | 485768d3fe3e39c8934c00b164f1fb7ddca76e6c (diff) | |
fix: correct linter errors
Diffstat (limited to 'spec/support')
| -rw-r--r-- | spec/support/with_scanner_context.rb (renamed from spec/support/scanner_context.rb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/scanner_context.rb b/spec/support/with_scanner_context.rb index af4e7fc..c9f167d 100644 --- a/spec/support/scanner_context.rb +++ b/spec/support/with_scanner_context.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -RSpec.shared_context 'a scanner' do +RSpec.shared_context 'with scanner' do subject { project.report_for(type: report_type) } let(:docker) { Docker.new(pwd: Pathname.pwd.join("src/#{scanner}")) } @@ -19,5 +19,5 @@ RSpec.shared_context 'a scanner' do end RSpec.configure do |config| - config.include_context 'a scanner' + config.include_context 'with scanner' end |
