From 3cef60c8d74fb0739b405d9596f813bb9b1dfede Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Mon, 19 Feb 2024 13:04:51 +0000 Subject: [PATCH] Use unique words for spelling unit test (#17195) GitOrigin-RevId: 21dc22192ee462d222982a92612aa8a0b858aba1 --- services/spelling/test/unit/js/ASpellTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {