diff --git a/services/spelling/test/unit/js/ASpellTests.js b/services/spelling/test/unit/js/ASpellTests.js index f21c839db1..e17904af26 100644 --- a/services/spelling/test/unit/js/ASpellTests.js +++ b/services/spelling/test/unit/js/ASpellTests.js @@ -108,7 +108,7 @@ describe('ASpell', function () { return describe('when the request times out', function () { beforeEach(function (done) { - const words = __range__(0, 1000, true).map(i => 'abcdefg') + const words = __range__(0, 1000, true).map(i => 'abcdefg' + i) this.ASpell.setTimeout(1) this.start = Date.now() return this.ASpell.checkWords('en', words, (error, result) => {