summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
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