Merge pull request #26257 from ClickHouse/CurtizJ-patch-3

Fix output of TSV in integration tests
This commit is contained in:
alexey-milovidov 2021-07-13 02:53:10 +03:00 committed by GitHub
commit 60b87a57c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,9 @@ class TSV:
def __str__(self):
return '\n'.join(self.lines)
def __repr__(self):
return self.__str__()
def __len__(self):
return len(self.lines)