diff options
| author | mo khan <mo.khan@gmail.com> | 2020-03-03 12:13:06 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-03-03 12:13:06 -0700 |
| commit | f93a0e2b6d9675551ad82ca3af6060eac8cd8d79 (patch) | |
| tree | 03972ef752a89dd55dcbd1e1c63c33510ccb0e06 /spec/unit/dotnet | |
| parent | c40d6e4c275111814933fc575cb697620c065589 (diff) | |
Fix linter error
Diffstat (limited to 'spec/unit/dotnet')
| -rw-r--r-- | spec/unit/dotnet/index_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/dotnet/index_spec.rb b/spec/unit/dotnet/index_spec.rb index 6686deb..4055e0d 100644 --- a/spec/unit/dotnet/index_spec.rb +++ b/spec/unit/dotnet/index_spec.rb @@ -38,7 +38,7 @@ RSpec.describe Spandx::Dotnet::Index do before do allow(Spandx::Dotnet::NugetGateway).to receive(:new).and_return(gateway) allow(gateway).to receive(:each) - .and_yield({ 'id' => 'Polaroider', 'version' => '0.2.0', 'licenseExpression' => 'MIT'}) + .and_yield('id' => 'Polaroider', 'version' => '0.2.0', 'licenseExpression' => 'MIT') subject.update!(catalogue: catalogue, limit: 10) end |
