Skip to content

Commit fd8dae2

Browse files
committed
chore: format
1 parent 193db50 commit fd8dae2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unit_tests/sources/declarative/validators/test_validate_in_line_condition.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def test_given_non_string_condition_raises_error(self):
3434
with pytest.raises(ValueError) as exc_info:
3535
validation_strategy.validate(value)
3636

37-
assert f"Invalid condition argument: {value}. Should be a string." in str(exc_info.value)
37+
assert f"Invalid condition argument: {value}. Should be a string." in str(
38+
exc_info.value
39+
)
3840

3941
@pytest.mark.parametrize(
4042
"config, condition, expected_evaluation",

0 commit comments

Comments
 (0)