Skip to content

Commit 32e91a0

Browse files
committed
Apply ruff formatting to test_schema
1 parent 4007fa4 commit 32e91a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/test_schema.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ def test__value_sanitize(
207207
description: str, input_value: Dict[str, Any], expected_output: Any
208208
) -> None:
209209
"""Test the _value_sanitize function."""
210-
assert _value_sanitize(input_value) == expected_output, (
211-
f"Failed test case: {description}"
212-
)
210+
assert (
211+
_value_sanitize(input_value) == expected_output
212+
), f"Failed test case: {description}"
213213

214214

215215
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)