Skip to content

Commit

Permalink
Firehose identity cleanup (#2210)
Browse files Browse the repository at this point in the history
* missed a couple

* fix tests
  • Loading branch information
dholms authored Feb 21, 2024
1 parent 6b8d1c6 commit 4e0271b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pds/tests/sync/subscribe-repos.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
})
Expand All @@ -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')
})

Expand Down

0 comments on commit 4e0271b

Please sign in to comment.