diff options
author | David RodrÃguez <[email protected]> | 2025-05-30 12:07:59 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-06-03 08:12:09 +0900 |
commit | 6f4eaa100f3b1afd0edf99a7f7fa09a17732ff54 () | |
tree | 19fd39b21226587163fd64b9486beacedcaae3f5 /spec/bundler/commands/check_spec.rb | |
parent | 710f5b771155dcb4786014c8fd7b767a08f4d6f6 (diff) |
Remove hardcoded version of rake from Bundler tests
Let them run against the version resolved by the `test_gems.rb` gemfile. This should fix ruby-core CI job that was broken by the release of rake 13.3.0.
-rw-r--r-- | spec/bundler/commands/check_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,7 +57,7 @@ RSpec.describe "bundle check" do bundle :check, raise_on_error: false expect(err).to include("The following gems are missing") - expect(err).to include(" * rake (13.3.0)") expect(err).to include(" * actionpack (2.3.2)") expect(err).to include(" * activerecord (2.3.2)") expect(err).to include(" * actionmailer (2.3.2)") @@ -76,7 +76,7 @@ RSpec.describe "bundle check" do expect(exitstatus).to be > 0 expect(err).to include("The following gems are missing") expect(err).to include(" * rails (2.3.2)") - expect(err).to include(" * rake (13.3.0)") expect(err).to include(" * actionpack (2.3.2)") expect(err).to include(" * activerecord (2.3.2)") expect(err).to include(" * actionmailer (2.3.2)") |