Firehose identity cleanup ()

* missed a couple

* fix tests
This commit is contained in:
Daniel Holmgren 2024-02-21 15:59:44 -06:00 committed by GitHub
parent 6b8d1c641e
commit 4e0271bddf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -302,7 +302,7 @@ describe('repo subscribe repos', () => {
ws.terminate()
await verifyCommitEvents(evts)
const handleEvts = getHandleEvts(evts.slice(-3))
const handleEvts = getHandleEvts(evts.slice(-6))
verifyHandleEvent(handleEvts[0], alice, 'alice2.test')
verifyHandleEvent(handleEvts[1], bob, 'bob2.test')
})
@ -318,7 +318,7 @@ describe('repo subscribe repos', () => {
const evts = await readTillCaughtUp(gen, update)
ws.terminate()
const handleEvts = getHandleEvts(evts.slice(-1))
const handleEvts = getHandleEvts(evts.slice(-2))
verifyHandleEvent(handleEvts[0], bob, 'bob2.test')
})