From 8e8a953ac67b74c2ee4ccefe9afa7abbd886cbba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 9 Dec 2017 13:31:12 +0100 Subject: [PATCH] fix test name typo --- testing/test_pytester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_pytester.py b/testing/test_pytester.py index 9508c2954..cba267f57 100644 --- a/testing/test_pytester.py +++ b/testing/test_pytester.py @@ -141,7 +141,7 @@ def test_inline_run_clean_modules(testdir): assert result2.ret == EXIT_TESTSFAILED -def test_assert_outcomes_after_pytest_erro(testdir): +def test_assert_outcomes_after_pytest_error(testdir): testdir.makepyfile("def test_foo(): assert True") result = testdir.runpytest('--unexpected-argument')