Move assertion in unit test inside loop (#60232)

pull/60293/head
Sam Doran 5 years ago committed by Matt Martz
parent ed21aba442
commit aa717661af

@ -31,4 +31,4 @@ def test_check_type_int_fail():
for case in test_cases:
with pytest.raises(TypeError) as e:
check_type_int(case)
assert 'cannot be converted to an int' in to_native(e)
assert 'cannot be converted to an int' in to_native(e)

Loading…
Cancel
Save