* Update mark on test_vec

This commit is contained in:
Matthew Honnibal 2015-09-22 02:23:11 +02:00
parent 361f6fdd74
commit 5fa18e4f9d
1 changed files with 4 additions and 4 deletions

View File

@ -4,15 +4,15 @@ from spacy.en import English
import pytest import pytest
@pytest.mark.vectors @pytest.mark.models
def test_vec(EN): def test_vec(EN):
hype = EN.vocab['hype'] hype = EN.vocab['hype']
assert hype.orth_ == 'hype' assert hype.orth_ == 'hype'
assert 0.08 >= hype.repvec[0] > 0.07 assert 0.08 >= hype.vector[0] > 0.07
@pytest.mark.vectors @pytest.mark.models
def test_capitalized(EN): def test_capitalized(EN):
hype = EN.vocab['Hype'] hype = EN.vocab['Hype']
assert hype.orth_ == 'Hype' assert hype.orth_ == 'Hype'
assert 0.08 >= hype.repvec[0] > 0.07 assert 0.08 >= hype.vector[0] > 0.07