diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-04-27 22:54:36 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-04-28 12:30:46 +0200 |
commit | 9caea90954c9ca2ad0d720983281f1f82c9da558 (patch) | |
tree | 3fb8e02ba9855b52c7914c6037bdff533f51b1b2 /spec/commands/licenses_spec.rb | |
parent | 662fe29107bf0dafd55be661a4471f4b7afd73f6 (diff) | |
download | bundler-9caea90954c9ca2ad0d720983281f1f82c9da558.tar.gz |
Fix license listing for bundler itself
Diffstat (limited to 'spec/commands/licenses_spec.rb')
-rw-r--r-- | spec/commands/licenses_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/licenses_spec.rb b/spec/commands/licenses_spec.rb index 21fd8eaf2f..423921e282 100644 --- a/spec/commands/licenses_spec.rb +++ b/spec/commands/licenses_spec.rb @@ -12,7 +12,7 @@ RSpec.describe "bundle licenses" do it "prints license information for all gems in the bundle" do bundle "licenses" - expect(err).to include("bundler: Unknown") + expect(out).to include("bundler: MIT") expect(out).to include("with_license: MIT") end |