Skip to content

Commit

Permalink
fix: test.js error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-Koren committed Mar 23, 2020
1 parent 6050b3f commit faa0dc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ it('should check if brackets sequence is correct 6', () => {
assert.equal(check('[]()', config2), true);
});

it('should check if brackets sequence is correct 7', () => {
it('should check if brackets sequence is not correct 7', () => {
assert.equal(check('[]()(', config2), false);
});

Expand All @@ -58,11 +58,11 @@ it('should check if brackets sequence is correct 12', () => {
assert.equal(check('111115611111111222288888822225577877778775555666677777777776622222', config6), true);
});

it('should check if brackets sequence is correct 13', () => {
it('should check if brackets sequence is not correct 13', () => {
assert.equal(check('5555512575557777777555566667888888667661133833448441111222233333444442266666', config6), false);
});

it('should check if brackets sequence is correct 14', () => {
it('should check if brackets sequence is not correct 14', () => {
assert.equal(check('8888877878887777777888888887777777887887788788887887777777788888888887788888', config6), false);
});

Expand Down

0 comments on commit faa0dc7

Please sign in to comment.