diff --git a/libcnb-test/tests/integration_test.rs b/libcnb-test/tests/integration_test.rs index bc620086..1a5b128e 100644 --- a/libcnb-test/tests/integration_test.rs +++ b/libcnb-test/tests/integration_test.rs @@ -235,20 +235,6 @@ fn app_dir_absolute_path() { // that only appears in the absolute path, not the relative path passed to `BuildConfig::new`. #[should_panic(expected = "libcnb-test/tests/fixtures/non-existent-fixture")] fn app_dir_invalid_path() { - TestRunner::default().build( - BuildConfig::new("heroku/builder:22", "tests/fixtures/non-existent-fixture") - .buildpacks(Vec::new()), - |_| {}, - ); -} - -#[test] -#[ignore = "integration test"] -// The full panic message looks like this: -// `"App dir is not a valid directory: /.../libcnb-test/tests/fixtures/non-existent-fixture"` -// See above for why we only test this substring. -#[should_panic(expected = "libcnb-test/tests/fixtures/non-existent-fixture")] -fn app_dir_invalid_path_checked_before_applying_preprocessor() { TestRunner::default().build( BuildConfig::new("heroku/builder:22", "tests/fixtures/non-existent-fixture") .buildpacks(Vec::new())