diff --git a/spacy/tests/regression/test_issue7029.py b/spacy/tests/regression/test_issue7029.py index 2ff730e29..dcfb8d9e7 100644 --- a/spacy/tests/regression/test_issue7029.py +++ b/spacy/tests/regression/test_issue7029.py @@ -61,7 +61,7 @@ def test_issue7029(): for i in range(50): losses = {} nlp.update(train_examples, sgd=optimizer, losses=losses) - texts = ["first", "second", "thrid", "fourth", "and", "then", "some", ""] + texts = ["first", "second", "third", "fourth", "and", "then", "some", ""] nlp.select_pipes(enable=["tok2vec", "tagger"]) docs1 = list(nlp.pipe(texts, batch_size=1)) docs2 = list(nlp.pipe(texts, batch_size=4))