From 18c6b6f7d00264c5d0d843f54f8135d0036f55f9 Mon Sep 17 00:00:00 2001 From: Alex-Brooks Date: Fri, 20 Sep 2024 03:40:02 -0400 Subject: [PATCH] Flip default / override num crops in proc kwarg tests Signed-off-by: Alex-Brooks --- tests/multimodal/test_processor_kwargs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/multimodal/test_processor_kwargs.py b/tests/multimodal/test_processor_kwargs.py index 35df3fe1492e4..db304eef20a40 100644 --- a/tests/multimodal/test_processor_kwargs.py +++ b/tests/multimodal/test_processor_kwargs.py @@ -21,8 +21,8 @@ # For processor_kwargs - we test overrides by defining mocks for each place # it is used, and ensuring that we can pass processor kwargs an override value # to receive the intended result for things like sequence length etc. -DEFAULT_NUM_CROPS = 4 -NUM_CROPS_OVERRIDE = 16 +DEFAULT_NUM_CROPS = 16 +NUM_CROPS_OVERRIDE = 4 # Mocks for all of the places that we use the processor_kwargs