From 54872e94b4f3437cb0052a83970133722e79eadd Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 20 Jun 2016 18:44:34 +0200 Subject: [PATCH] Fix test name typo --- testing/python/raises.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/python/raises.py b/testing/python/raises.py index 93295966c..59fd622fd 100644 --- a/testing/python/raises.py +++ b/testing/python/raises.py @@ -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):