Skip to content

Commit 9b767bc

Browse files
bigmontzrobsdedude
andauthored
Apply suggestions from code review
Co-authored-by: Robsdedude <dev@rouvenbauer.de>
1 parent dd492ee commit 9b767bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/test/integer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,11 +420,11 @@ describe('Integer', () => {
420420
fc.assert(fc.property(arbitraryInteger(), (a) => a.subtract(0).equals(a)))
421421
})
422422

423-
test('Integer.multiply should have 0 as identity', () => {
423+
test('Integer.multiply should have 1 as identity', () => {
424424
fc.assert(fc.property(arbitraryInteger(), (a) => a.multiply(1).equals(a)))
425425
})
426426

427-
test('Integer.div should have 0 as identity', () => {
427+
test('Integer.div should have 1 as identity', () => {
428428
fc.assert(fc.property(arbitraryInteger(), (a) => a.div(1).equals(a)))
429429
})
430430

0 commit comments

Comments
 (0)