summaryrefslogtreecommitdiff
path: root/spec/unit/python
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/python')
-rw-r--r--spec/unit/python/source_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/python/source_spec.rb b/spec/unit/python/source_spec.rb
index ccf63d3..30ff81f 100644
--- a/spec/unit/python/source_spec.rb
+++ b/spec/unit/python/source_spec.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
RSpec.describe Spandx::Python::Source do
- context "when fetching metadata for a known package from https://pypi.org" do
+ context 'when fetching metadata for a known package from https://pypi.org' do
subject { described_class.default }
it 'fetches the correct data' do
@@ -16,7 +16,7 @@ RSpec.describe Spandx::Python::Source do
end
end
- context "when fetching metadata for a known package from https://test.pypi.org" do
+ context 'when fetching metadata for a known package from https://test.pypi.org' do
subject { described_class.new({ 'name' => 'pypi', 'url' => 'https://test.pypi.org/simple', 'verify_ssl' => true }) }
it 'fetches the correct data' do