We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc03659 commit 716cb89Copy full SHA for 716cb89
1 file changed
tests/test_main.py
@@ -95,7 +95,7 @@ def test_format_output_expanded_live_connection(self):
95
'Name | Night',
96
'(3 rows affected)'
97
]
98
- assert list(result) == expected
+ assert '\n'.join(result) == '\n'.join(expected)
99
finally:
100
shutdown(mssqlcli.mssqlcliclient_main)
101
@@ -138,7 +138,7 @@ def test_format_output_auto_expand():
138
'head2 | def',
139
'test status'
140
141
- assert list(expanded_results) == expanded
+ assert '\n'.join(expanded_results) == '\n'.join(expanded)
142
143
@staticmethod
144
def test_missing_rc_dir():
0 commit comments