diff --git a/spacy/tests/tokens/test_vec.py b/spacy/tests/tokens/test_vec.py index 028328fa6..f98b4de96 100644 --- a/spacy/tests/tokens/test_vec.py +++ b/spacy/tests/tokens/test_vec.py @@ -8,11 +8,11 @@ import pytest def test_vec(EN): hype = EN.vocab['hype'] assert hype.orth_ == 'hype' - assert 0.08 >= hype.vector[0] > 0.07 + assert -0.7 >= hype.vector[0] > -0.8 @pytest.mark.models def test_capitalized(EN): hype = EN.vocab['Hype'] assert hype.orth_ == 'Hype' - assert 0.08 >= hype.vector[0] > 0.07 + assert -0.7 >= hype.vector[0] > -0.8