Comment 0 for bug 1475929

Revision history for this message
Erno Kuvaja (jokke) wrote :

lots of Freezer tests uses pytest.raises(<exception>, f(x)) syntax that does not exercise the code but just "succeeds". Correct syntax would be pytest.raises(<exception>, "f(x)") or pytest.raises(<exception>, f, x)