Fix test name typo

This commit is contained in:
Florian Bruhin
2016-06-20 18:44:34 +02:00
committed by GitHub
parent 4f2db6c08d
commit 54872e94b4

View File

@@ -87,7 +87,7 @@ class TestRaises:
else:
assert False, "Expected pytest.raises.Exception"
def test_costum_raise_message(self):
def test_custom_raise_message(self):
message = "TEST_MESSAGE"
try:
with pytest.raises(ValueError, message=message):