Skip to content

Commit b2a89be

Browse files
MaxMax
authored andcommitted
idhfd
1 parent c753dc8 commit b2a89be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/splitInteger.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ expect(result).toEqual([30])
1717
});
1818

1919
test('should sort parts ascending if they are not equal', () => {
20-
const result = splitInteger(42, 4); //мне jcbdhbnd
20+
const result = splitInteger(42, 4);
2121
expect(result).toEqual([10, 10, 11, 11]);
2222

2323
});
2424

2525
test('should add zeros if value < numberOfParts', () => {
2626
const result = splitInteger(2, 4);
27-
expect(result).toEqual([0, 0, 1, 1]);
27+
expect(result).toEqual([0, 0, 1, 1]); //hi
2828

2929
});

0 commit comments

Comments
 (0)