forked from LBRYCommunity/lbry-sdk
Lint fix for _es_height checks.
This commit is contained in:
parent
38e9b5b432
commit
988f288715
1 changed files with 4 additions and 4 deletions
|
@ -308,9 +308,9 @@ class IntegrationTestCase(AsyncioTestCase):
|
|||
while True:
|
||||
await self.conductor.spv_node.server.synchronized.wait()
|
||||
self.conductor.spv_node.server.synchronized.clear()
|
||||
if (self.conductor.spv_node.server.db.db_height < height):
|
||||
if self.conductor.spv_node.server.db.db_height < height:
|
||||
continue
|
||||
if (self.conductor.spv_node.server._es_height < height):
|
||||
if self.conductor.spv_node.server._es_height < height:
|
||||
continue
|
||||
break
|
||||
|
||||
|
@ -334,9 +334,9 @@ class IntegrationTestCase(AsyncioTestCase):
|
|||
while True:
|
||||
await self.conductor.spv_node.server.synchronized.wait()
|
||||
self.conductor.spv_node.server.synchronized.clear()
|
||||
if (self.conductor.spv_node.server.db.db_height < height):
|
||||
if self.conductor.spv_node.server.db.db_height < height:
|
||||
continue
|
||||
if (self.conductor.spv_node.server._es_height < height):
|
||||
if self.conductor.spv_node.server._es_height < height:
|
||||
continue
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in a new issue