correct failing test unit

This commit is contained in:
Rowan 2025-04-30 22:44:41 -05:00
parent 5faef796d4
commit def4351179

View file

@ -115,7 +115,7 @@ export const EnumerableFrom = [
}),
it('from invalid should error', () => {
const expected = /is not enumerable/g
const expected = new TypeError('value is not enumerable')
assertErr(() => {
Enumerable.from(1)