[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2022-10-07 22:59:24 +00:00
parent 7179ad0a89
commit ccaf006c2f
1 changed files with 4 additions and 4 deletions

View File

@ -778,13 +778,13 @@ class TestAssert_reprcompare:
def test_nfc_nfd_same_string(self) -> None: def test_nfc_nfd_same_string(self) -> None:
# issue 3426 # issue 3426
left = 'hyv\xe4' left = "hyv\xe4"
right = 'hyva\u0308' right = "hyva\u0308"
expl = callequal(left, right) expl = callequal(left, right)
assert expl == [ assert expl == [
"'hyvä' == 'hyvä'", "'hyvä' == 'hyvä'",
'Strings are different but normalize to the same string. Comparing their utf-8 encoding.', "Strings are different but normalize to the same string. Comparing their utf-8 encoding.",
"At index 3 diff: b'\\xc3' != b'a'" "At index 3 diff: b'\\xc3' != b'a'",
] ]