mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
Minor correction of comments.
This commit is contained in:
parent
aff00be1a9
commit
b8790450d9
@ -579,8 +579,9 @@ def pytest_assertrepr_compare(config: Config, op: str, left: object, right: obje
|
|||||||
If both objects are `str`, uses `difflib.ndiff` to provide explanation.
|
If both objects are `str`, uses `difflib.ndiff` to provide explanation.
|
||||||
"""
|
"""
|
||||||
if isinstance(left, str) and isinstance(right, str) and op == "==":
|
if isinstance(left, str) and isinstance(right, str) and op == "==":
|
||||||
# 16.11.2023, pzotov: we have too empty string at the beginning of each comparing lists.
|
# 16.11.2023, pzotov: we have to put empty string at the beginning of each comparing lists.
|
||||||
# Otherwise first diff will be at the same line as 'assert' phrase, which causes readability be poor.
|
# Otherwise first diff will be at the same line as 'assert' phrase, which causes readability be poor.
|
||||||
|
#
|
||||||
left_lines = ['']
|
left_lines = ['']
|
||||||
left_lines.extend(left.splitlines())
|
left_lines.extend(left.splitlines())
|
||||||
right_lines = ['']
|
right_lines = ['']
|
||||||
|
Loading…
Reference in New Issue
Block a user