Use unique words for spelling unit test (#17195)

GitOrigin-RevId: 21dc22192ee462d222982a92612aa8a0b858aba1
This commit is contained in:
Alf Eaton 2024-02-19 13:04:51 +00:00 committed by Copybot
parent bafc2189e3
commit 3cef60c8d7

View file

@ -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) => {