From 03b4ec7d7fac8d3c2e5360d50075eddf0478396b Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 12 Feb 2021 14:30:16 +0100 Subject: [PATCH] fix typo --- spacy/tests/regression/test_issue7029.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))