fix test, off by 1
This commit is contained in:
parent
a70f5e2440
commit
36031c9d0f
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class ReconnectTests(IntegrationTestCase):
|
|||
await self.ledger.network.start()
|
||||
await self.ledger.network.on_connected.first
|
||||
await self.ledger.initial_headers_sync()
|
||||
self.assertEqual(initial_height + 99, self.ledger.local_height_including_downloaded_height)
|
||||
self.assertEqual(initial_height + 100, self.ledger.local_height_including_downloaded_height)
|
||||
|
||||
async def test_connection_drop_still_receives_events_after_reconnected(self):
|
||||
address1 = await self.account.receiving.get_or_create_usable_address()
|
||||
|
|
Loading…
Reference in a new issue