Skip to content

Commit a3bf2a3

Browse files
committed
FluxIPAdapterMixin not test mixin
1 parent 253ef7e commit a3bf2a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/pipelines/test_pipelines_common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
UNet2DConditionModel,
3030
)
3131
from diffusers.image_processor import VaeImageProcessor
32-
from diffusers.loaders import IPAdapterMixin
32+
from diffusers.loaders import FluxIPAdapterMixin, IPAdapterMixin
3333
from diffusers.models.attention_processor import AttnProcessor
3434
from diffusers.models.controlnets.controlnet_xs import UNetControlNetXSModel
3535
from diffusers.models.unets.unet_3d_condition import UNet3DConditionModel
@@ -493,7 +493,7 @@ class FluxIPAdapterTesterMixin:
493493
def test_pipeline_signature(self):
494494
parameters = inspect.signature(self.pipeline_class.__call__).parameters
495495

496-
assert issubclass(self.pipeline_class, FluxIPAdapterTesterMixin)
496+
assert issubclass(self.pipeline_class, FluxIPAdapterMixin)
497497
self.assertIn(
498498
"ip_adapter_image",
499499
parameters,

0 commit comments

Comments
 (0)