about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py')
-rw-r--r--nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py b/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py
index eb6288084883..515b8f57b7ef 100644
--- a/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py
+++ b/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/annotate.py
@@ -26,10 +26,10 @@ def test_entities(doc_en_core_web_sm):
 
     assert entities == [
         ('Sebastian Thrun', 'PERSON'),
+        ('Google', 'ORG'),
         ('2007', 'DATE'),
         ('American', 'NORP'),
-        ('Thrun', 'PERSON'),
-        ('Recode', 'PERSON'),
+        ('Thrun', 'GPE'),
         ('earlier this week', 'DATE'),
     ]