Skip to content

Commit c74f923

Browse files
committedMar 21, 2024
Fix problem with ndiff assert
1 parent 28ef5c8 commit c74f923

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/firebird/qa/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2021-present The Firebird Projects <www.firebirdsql.org>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "0.19.2"
4+
__version__ = "0.19.3"

‎src/firebird/qa/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ def pytest_assertrepr_compare(config: Config, op: str, left: object, right: obje
602602
# is right side, e.g: assert act.clean_stdout == act.clean_expected_stdout
603603
# This requirement is CRUCIAL if we use ndiff() instead of default pytest comparison method!
604604
#
605-
return ndiff(right_lines, left_lines)
605+
return list(ndiff(right_lines, left_lines))
606606

607607
return None
608608

0 commit comments

Comments
 (0)
Please sign in to comment.