Skip to content

Commit

Permalink
reduce numbers for subtract big numbers test due to microsoft/TypeScr…
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Apr 6, 2021
1 parent 592b7f0 commit b68234c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilityFunctions/__tests__/Number.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ describe('arithmetic', () => {
assert(num === 2)
})
test('big numbers', () => {
const num = subtract(10000, 3000) // $ExpectType 7000
assert(num === 7000)
const num = subtract(5000, 3000) // $ExpectType 2000
assert(num === 2000)
})
})
describe('multiply', () => {
Expand Down

0 comments on commit b68234c

Please sign in to comment.