mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-22 00:56:34 +03:00
TRIVIAL fix test that fails on whitespace diff
This commit is contained in:
parent
9df82a44ec
commit
7aef68ab14
|
@ -161,9 +161,9 @@ class EnginesTestCase(_EnginesHelperTestCase):
|
|||
|
||||
self.assertEqual(2, len(parts))
|
||||
self.assertEqual('testcollapsemodel', parts[0].table)
|
||||
self.assertEqual('(201701, 13)', parts[0].partition)
|
||||
self.assertEqual('(201701, 13)'.replace(' ', ''), parts[0].partition.replace(' ', ''))
|
||||
self.assertEqual('testmodel', parts[1].table)
|
||||
self.assertEqual('(201701, 13)', parts[1].partition)
|
||||
self.assertEqual('(201701, 13)'.replace(' ', ''), parts[1].partition.replace(' ', ''))
|
||||
|
||||
|
||||
class SampleModel(Model):
|
||||
|
|
Loading…
Reference in New Issue
Block a user