summaryrefslogtreecommitdiff
path: root/spec/unit/python
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-26 17:42:47 -0600
committermo khan <mo.khan@gmail.com>2020-03-26 17:42:47 -0600
commit16e9419b5d0cfeda9522708cd25694d9df9c4476 (patch)
tree4955512d6fc5d798e48620d9245416c3e58fb9df /spec/unit/python
parentb12578a5f980501b585ffe5b45d8455bd33ddae8 (diff)
Fix linter errors
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