6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Fix problem with ndiff assert

This commit is contained in:
Pavel Císař 2024-03-21 09:57:32 +01:00
parent 28ef5c826c
commit c74f923a5b
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-present The Firebird Projects <www.firebirdsql.org>
#
# SPDX-License-Identifier: MIT
__version__ = "0.19.2"
__version__ = "0.19.3"

View File

@ -602,7 +602,7 @@ def pytest_assertrepr_compare(config: Config, op: str, left: object, right: obje
# is right side, e.g: assert act.clean_stdout == act.clean_expected_stdout
# This requirement is CRUCIAL if we use ndiff() instead of default pytest comparison method!
#
return ndiff(right_lines, left_lines)
return list(ndiff(right_lines, left_lines))
return None