diff --git a/buildpacks/ruby/tests/integration_test.rs b/buildpacks/ruby/tests/integration_test.rs index 514041d..1d05d52 100644 --- a/buildpacks/ruby/tests/integration_test.rs +++ b/buildpacks/ruby/tests/integration_test.rs @@ -148,7 +148,7 @@ fn test_jruby_app() { r#" source "https://rubygems.org" - ruby '2.6.8', engine: 'jruby', engine_version: '9.3.6.0' + ruby '3.1.4', engine: 'jruby', engine_version: '9.4.8.0' "#, ) .unwrap(); @@ -162,7 +162,7 @@ GEM PLATFORMS java RUBY VERSION - ruby 2.6.8p001 (jruby 9.3.6.0) + ruby 3.1.4p001 (jruby 9.4.8.0) DEPENDENCIES ", ) @@ -183,7 +183,7 @@ DEPENDENCIES context.pack_stdout, r#"`BUNDLE_BIN="/layers/heroku_ruby/gems/bin" BUNDLE_CLEAN="1" BUNDLE_DEPLOYMENT="1" BUNDLE_GEMFILE="/workspace/Gemfile" BUNDLE_PATH="/layers/heroku_ruby/gems" BUNDLE_WITHOUT="development:test" bundle install`"# ); - assert_contains!(context.pack_stdout, "Ruby version `2.6.8-jruby-9.3.6.0` from `Gemfile.lock`"); + assert_contains!(context.pack_stdout, "Ruby version `3.1.4-jruby-9.4.8.0` from `Gemfile.lock`"); }); }