EnumerableSet: Remove Boundary Check in _at (#2606)
* remove boundary check * fix tests for EnumerableSet "index out of bound" * Changelog Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
This commit is contained in:
@ -51,7 +51,7 @@ function shouldBehaveLikeSet (valueA, valueB, valueC) {
|
||||
|
||||
describe('at', function () {
|
||||
it('reverts when retrieving non-existent elements', async function () {
|
||||
await expectRevert(this.set.at(0), 'EnumerableSet: index out of bounds');
|
||||
await expectRevert.unspecified(this.set.at(0));
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user