summaryrefslogtreecommitdiff
path: root/spec/unit/cli/scan_spec.rb
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-03 12:04:56 -0700
committermo khan <mo.khan@gmail.com>2020-03-03 12:04:56 -0700
commitc40d6e4c275111814933fc575cb697620c065589 (patch)
tree874595929857e13784281710a32e7dcd97a163a9 /spec/unit/cli/scan_spec.rb
parent741e07e6c9e8673659c5dfbbf4972a5bf007d004 (diff)
Update build subcommand to delegate to Index
Diffstat (limited to 'spec/unit/cli/scan_spec.rb')
-rw-r--r--spec/unit/cli/scan_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/cli/scan_spec.rb b/spec/unit/cli/scan_spec.rb
index e79986c..8d3cd4d 100644
--- a/spec/unit/cli/scan_spec.rb
+++ b/spec/unit/cli/scan_spec.rb
@@ -8,7 +8,7 @@ RSpec.describe Spandx::Cli::Commands::Scan do
let(:options) { {} }
before do
- stub_request(:get, Spandx::Gateways::Spdx::URL)
+ stub_request(:get, Spandx::Spdx::Gateway::URL)
.to_return(status: 200, body: IO.read(fixture_file('spdx/json/licenses.json')))
end