Skip to content

Commit

Permalink
Update tests for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCaso committed Oct 21, 2022
1 parent 63fdb4c commit b608cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils/Strings.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ contract('Strings', function (accounts) {
});

it('compares two different strings of different (big) lengths', async function () {
const str1 = `a`.repeat(201);
const str2 = `a`.repeat(200) + `b`;
const str1 = 'a'.repeat(201);
const str2 = 'a'.repeat(200) + 'b';
expect(await this.strings.methods['compare(string,string)'](str1, str2)).to.equal(false);
});
});
Expand Down

0 comments on commit b608cfc

Please sign in to comment.