From d67f0f074e7c89189818fa1634a29e4800cf286b Mon Sep 17 00:00:00 2001 From: Schneems Date: Mon, 16 Dec 2024 16:20:48 -0600 Subject: [PATCH] Disable metadata migration test We're no longer modifying metadata, we can safely disable this test (which now fails because the defaults are changing between the versions). --- buildpacks/ruby/tests/integration_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpacks/ruby/tests/integration_test.rs b/buildpacks/ruby/tests/integration_test.rs index e9179a82..514041d4 100644 --- a/buildpacks/ruby/tests/integration_test.rs +++ b/buildpacks/ruby/tests/integration_test.rs @@ -20,7 +20,7 @@ fn test_migrating_metadata() { // Remove the return and update the `buildpack-ruby` reference to the latest version. #![allow(unreachable_code)] // Test v4.0.2 compatible with v4.0.1 - // return; + return; let builder = "heroku/builder:24"; let app_dir = "tests/fixtures/default_ruby";