use e.value to get to the ExceptionInfo value

This commit is contained in:
svlandeg 2020-09-15 22:30:09 +02:00
parent aaf01689a1
commit f420aa1138

View File

@ -298,4 +298,4 @@ def test_language_init_invalid_vocab(value):
err_fragment = "invalid value" err_fragment = "invalid value"
with pytest.raises(ValueError) as e: with pytest.raises(ValueError) as e:
Language(value) Language(value)
assert err_fragment in str(e) assert err_fragment in str(e.value)