Skip to content

Commit 714b969

Browse files
committed
format fix
1 parent cb0518a commit 714b969

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/pipelines/controlnet_hunyuandit/test_controlnet_hunyuandit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ def test_canny(self):
238238

239239
original_image = image[-3:, -3:, -1].flatten()
240240

241-
expected_image = np.array([0.43652344, 0.4399414, 0.44921875, 0.45043945, 0.45703125, 0.44873047, 0.43579102, 0.44018555, 0.42578125])
241+
expected_image = np.array(
242+
[0.43652344, 0.4399414, 0.44921875, 0.45043945, 0.45703125, 0.44873047, 0.43579102, 0.44018555, 0.42578125]
243+
)
242244

243245
assert np.abs(original_image.flatten() - expected_image).max() < 1e-2
244246

0 commit comments

Comments
 (0)