From 5168527bb9fb1f0f2f58539581337d8e4936d5d0 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Sun, 15 Feb 2026 21:56:38 +0100 Subject: [PATCH] Fix crop and resize unit test --- src/pipeline/steps/crop_and_resize.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pipeline/steps/crop_and_resize.rs b/src/pipeline/steps/crop_and_resize.rs index 2543e3b..b88f30b 100644 --- a/src/pipeline/steps/crop_and_resize.rs +++ b/src/pipeline/steps/crop_and_resize.rs @@ -252,6 +252,7 @@ mod tests { let mut config = Config::default(); config.processing.output.size = 512; + config.processing.crop.enabled = false; match step.execute(ctx, &config).await { StepOutcome::Continue(new_ctx) => { @@ -295,6 +296,7 @@ mod tests { let mut config = Config::default(); config.processing.output.size = 256; + config.processing.crop.enabled = false; match step.execute(ctx, &config).await { StepOutcome::Continue(new_ctx) => {