Skip to content

Commit add5001

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 796fb5f commit add5001

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/test_models.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,15 @@ def test_check_aspect_ratios(self):
826826
assert errors[0].id == "fields.E100"
827827

828828
@pytest.mark.parametrize(
829-
"aspect_ratios", (("3/2",), (None,), ("3/2", None,))
829+
"aspect_ratios",
830+
(
831+
("3/2",),
832+
(None,),
833+
(
834+
"3/2",
835+
None,
836+
),
837+
),
830838
)
831839
def test_check_width_height_field(self, aspect_ratios):
832840
with override_field_aspect_ratios(Profile.picture.field, aspect_ratios):

0 commit comments

Comments
 (0)