fix mypy warning

This commit is contained in:
Samuel Colvin 2022-03-08 18:20:45 +00:00
parent 2ae84c8494
commit e4c1b55125
No known key found for this signature in database
GPG Key ID: 23D29BED9828A51C
1 changed files with 1 additions and 0 deletions

View File

@ -1702,6 +1702,7 @@ def test_reprcompare_verbose_long() -> None:
b = a.copy() b = a.copy()
b["v2"] += 10 b["v2"] += 10
lines = callop("==", a, b, verbose=2) lines = callop("==", a, b, verbose=2)
assert lines is not None
assert lines[0] == ( assert lines[0] == (
"{'v0': 0, 'v1': 1, 'v2': 2, 'v3': 3, 'v4': 4, 'v5': 5, " "{'v0': 0, 'v1': 1, 'v2': 2, 'v3': 3, 'v4': 4, 'v5': 5, "
"'v6': 6, 'v7': 7, 'v8': 8, 'v9': 9, 'v10': 10}" "'v6': 6, 'v7': 7, 'v8': 8, 'v9': 9, 'v10': 10}"