Explicitly catch warning in test

This commit is contained in:
Ines Montani 2019-10-24 16:16:27 +02:00
parent 1b0bbe4b76
commit 9a849fe54e

View File

@ -154,6 +154,7 @@ def test_append_alias(nlp):
assert len(mykb.get_candidates("douglas")) == 3
# append the same alias-entity pair again should not work (will throw a warning)
with pytest.warns(UserWarning):
mykb.append_alias(alias="douglas", entity="Q1", prior_prob=0.3)
# test the size of the relevant candidates remained unchanged