diff --git a/examples/ruby-sample/tests/integration_test.rs b/examples/ruby-sample/tests/integration_test.rs index 6296c724..1ae7be44 100644 --- a/examples/ruby-sample/tests/integration_test.rs +++ b/examples/ruby-sample/tests/integration_test.rs @@ -19,7 +19,7 @@ use std::{fs, io}; #[test] #[ignore = "integration test"] fn basic() { - let config = BuildConfig::new("heroku/buildpacks:20", "tests/fixtures/simple-ruby-app"); + let config = BuildConfig::new("heroku/builder:20", "tests/fixtures/simple-ruby-app"); TestRunner::default().build(&config, |context| { assert_contains!(context.pack_stdout, "---> Ruby Buildpack"); @@ -60,7 +60,7 @@ fn basic() { #[ignore = "integration test"] fn missing_gemfile_lock() { TestRunner::default().build( - BuildConfig::new("heroku/buildpacks:20", "tests/fixtures/simple-ruby-app") + BuildConfig::new("heroku/builder:20", "tests/fixtures/simple-ruby-app") .app_dir_preprocessor(|path| fs::remove_file(path.join("Gemfile.lock")).unwrap()) .expected_pack_result(PackResult::Failure), |context| {