mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
223 B
Python
6 lines
223 B
Python
from helpers.test_tools import TSV
|
|
|
|
def pytest_assertrepr_compare(op, left, right):
|
|
if isinstance(left, TSV) and isinstance(right, TSV) and op == '==':
|
|
return ['TabSeparated values differ: '] + left.diff(right)
|