We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd492ee commit 9b767bcCopy full SHA for 9b767bc
packages/core/test/integer.test.ts
@@ -420,11 +420,11 @@ describe('Integer', () => {
420
fc.assert(fc.property(arbitraryInteger(), (a) => a.subtract(0).equals(a)))
421
})
422
423
- test('Integer.multiply should have 0 as identity', () => {
+ test('Integer.multiply should have 1 as identity', () => {
424
fc.assert(fc.property(arbitraryInteger(), (a) => a.multiply(1).equals(a)))
425
426
427
- test('Integer.div should have 0 as identity', () => {
+ test('Integer.div should have 1 as identity', () => {
428
fc.assert(fc.property(arbitraryInteger(), (a) => a.div(1).equals(a)))
429
430
0 commit comments