From 4be2dd876dad45161f9f7fe22b140a74bad30d7e Mon Sep 17 00:00:00 2001 From: liuwenran <448073814@qq.com> Date: Fri, 8 Sep 2023 17:21:49 +0800 Subject: [PATCH] reduce test size --- .../test_inferencers/test_diffusers_pipeline_inferencer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_apis/test_inferencers/test_diffusers_pipeline_inferencer.py b/tests/test_apis/test_inferencers/test_diffusers_pipeline_inferencer.py index 27b2d08eb8..98b49f6e7c 100644 --- a/tests/test_apis/test_inferencers/test_diffusers_pipeline_inferencer.py +++ b/tests/test_apis/test_inferencers/test_diffusers_pipeline_inferencer.py @@ -29,9 +29,9 @@ def test_diffusers_pipeline_inferencer(): result = inferencer_instance( text=text_prompts, negative_prompt=negative_prompt, - height=128, - width=128) - assert result[1][0].size == (128, 128) + height=64, + width=64) + assert result[1][0].size == (64, 64) def teardown_module():