Skip to content

Commit

Permalink
reduce test size
Browse files Browse the repository at this point in the history
  • Loading branch information
liuwenran committed Sep 8, 2023
1 parent 0ea00be commit 4be2dd8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 4be2dd8

Please sign in to comment.