mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
Make limit for ACL batcher more leniant for CI (#235)
This commit is contained in:
parent
82a2e63d23
commit
7353ba4919
@ -286,7 +286,8 @@ describe('Test: ACL updates will batch when rules are added in succession.', fun
|
||||
LogService.debug('BanListTest', `aclEventCount: ${aclEventCount}`);
|
||||
// If there's less than two then it means the ACL was updated by this test calling `this.mjolnir!.syncLists()`
|
||||
// and not the listener that detects changes to ban lists (that we want to test!).
|
||||
assert.equal(aclEventCount < 10 && aclEventCount > 2, true, 'We should have sent less than 10 ACL events to each room because they should be batched')
|
||||
// It used to be 10, but it was too low, 30 seems better for CI.
|
||||
assert.equal(aclEventCount < 30 && aclEventCount > 2, true, 'We should have sent less than 30 ACL events to each room because they should be batched')
|
||||
}));
|
||||
})
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user