Unverified Commit bbd2f9d4 authored by Aryan's avatar Aryan Committed by GitHub
Browse files

[tests] fix typo in pag tests (#8845)

* fix typo in pag tests

* fix typo
parent d704b3bf
...@@ -173,7 +173,7 @@ class StableDiffusionControlNetPAGPipelineFastTests( ...@@ -173,7 +173,7 @@ class StableDiffusionControlNetPAGPipelineFastTests(
del inputs["pag_scale"] del inputs["pag_scale"]
assert ( assert (
"pag_scale" not in inspect.signature(pipe_sd.__call__).parameters "pag_scale" not in inspect.signature(pipe_sd.__call__).parameters
), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__calss__.__name__}." ), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__class__.__name__}."
out = pipe_sd(**inputs).images[0, -3:, -3:, -1] out = pipe_sd(**inputs).images[0, -3:, -3:, -1]
# pag disabled with pag_scale=0.0 # pag disabled with pag_scale=0.0
......
...@@ -193,7 +193,7 @@ class StableDiffusionXLControlNetPAGPipelineFastTests( ...@@ -193,7 +193,7 @@ class StableDiffusionXLControlNetPAGPipelineFastTests(
del inputs["pag_scale"] del inputs["pag_scale"]
assert ( assert (
"pag_scale" not in inspect.signature(pipe_sd.__call__).parameters "pag_scale" not in inspect.signature(pipe_sd.__call__).parameters
), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__calss__.__name__}." ), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__class__.__name__}."
out = pipe_sd(**inputs).images[0, -3:, -3:, -1] out = pipe_sd(**inputs).images[0, -3:, -3:, -1]
# pag disabled with pag_scale=0.0 # pag disabled with pag_scale=0.0
......
...@@ -157,7 +157,7 @@ class StableDiffusionPAGPipelineFastTests( ...@@ -157,7 +157,7 @@ class StableDiffusionPAGPipelineFastTests(
del inputs["pag_scale"] del inputs["pag_scale"]
assert ( assert (
"pag_scale" not in inspect.signature(pipe_sd.__call__).parameters "pag_scale" not in inspect.signature(pipe_sd.__call__).parameters
), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__calss__.__name__}." ), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__class__.__name__}."
out = pipe_sd(**inputs).images[0, -3:, -3:, -1] out = pipe_sd(**inputs).images[0, -3:, -3:, -1]
# pag disabled with pag_scale=0.0 # pag disabled with pag_scale=0.0
......
...@@ -170,7 +170,7 @@ class StableDiffusionXLPAGPipelineFastTests( ...@@ -170,7 +170,7 @@ class StableDiffusionXLPAGPipelineFastTests(
del inputs["pag_scale"] del inputs["pag_scale"]
assert ( assert (
"pag_scale" not in inspect.signature(pipe_sd.__call__).parameters "pag_scale" not in inspect.signature(pipe_sd.__call__).parameters
), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__calss__.__name__}." ), f"`pag_scale` should not be a call parameter of the base pipeline {pipe_sd.__class__.__name__}."
out = pipe_sd(**inputs).images[0, -3:, -3:, -1] out = pipe_sd(**inputs).images[0, -3:, -3:, -1]
# pag disabled with pag_scale=0.0 # pag disabled with pag_scale=0.0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment