diff options
Diffstat (limited to 'spec/integration/rust/cargo_spec.rb')
| -rw-r--r-- | spec/integration/rust/cargo_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/rust/cargo_spec.rb b/spec/integration/rust/cargo_spec.rb index c8794f8..7b2b606 100644 --- a/spec/integration/rust/cargo_spec.rb +++ b/spec/integration/rust/cargo_spec.rb @@ -23,7 +23,7 @@ RSpec.describe "cargo" do expect(subject.dependency_names).to match_array(%w[libc time]) end - specify { expect(subject.licenses_for('libc')).to match_array(['mit or apache-2.0']) } + specify { expect(subject.licenses_for('libc')).to match_array(['MIT', 'Apache-2.0']) } specify { expect(subject.licenses_for('time')).to match_array(['Apache-2.0', 'MIT']) } end @@ -38,7 +38,7 @@ RSpec.describe "cargo" do specify do expect(subject).to match_schema expect(subject.dependency_names).to match_array(['libc']) - expect(subject.licenses_for('libc')).to match_array(['mit or apache-2.0']) + expect(subject.licenses_for('libc')).to match_array(['MIT', 'Apache-2.0']) end end |
