Skip to content

Commit effcbe7

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

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_validators.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,9 @@ def test_fail_non_mapping(self):
818818
with pytest.raises(TypeError) as e:
819819
v(None, a, [1, 2, 3])
820820

821-
msg = f"'{a.name}' must be a mapping (got [1, 2, 3] that is a {list!r})."
821+
msg = (
822+
f"'{a.name}' must be a mapping (got [1, 2, 3] that is a {list!r})."
823+
)
822824
assert msg in str(e.value)
823825

824826

0 commit comments

Comments
 (0)