Skip to content

Commit

Permalink
✅ NIT Clean typos in letrec unit tests (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz authored Feb 5, 2020
1 parent b370d57 commit a9b5864
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/unit/check/arbitrary/LetRecArbitrary.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,15 @@ describe('LetRecArbitrary', () => {
['__defineGetter__​​']: tie('__defineSetter__​​'),
['__defineSetter__​​']: tie('__lookupGetter__​​'),
['__lookupGetter__​​']: tie('__lookupSetter__​​'),
['__lookupSetter__​​']: tie('__proto__​​'),
['__proto__​​']: tie('constructor​​'),
['__lookupSetter__​​']: tie('constructor​​'),
['constructor​​']: tie('hasOwnProperty​​'),
['hasOwnProperty​​']: tie('isPrototypeOf​​'),
['isPrototypeOf​​']: tie('propertyIsEnumerable​​'),
['propertyIsEnumerable​​']: tie('toLocaleString​​'),
['toLocaleString​​']: tie('toSource​​'),
['toSource​​']: tie('toString​​'),
['toString​​']: tie('valueOf'),
['valueOf']: tie('constructor'),
constructor: simpleArb
['valueOf']: simpleArb
}));

expect(generateMock).not.toHaveBeenCalled();
Expand Down

0 comments on commit a9b5864

Please sign in to comment.