From e9afd24958976794a77183e66e22aa3a7d5ffb6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 2 Jan 2020 18:17:43 +0100 Subject: [PATCH] :bug: Fix overwritten test function --- tests/test_tutorial/test_commands/test_help/test_tutorial002.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tutorial/test_commands/test_help/test_tutorial002.py b/tests/test_tutorial/test_commands/test_help/test_tutorial002.py index 1413247..95d4bd9 100644 --- a/tests/test_tutorial/test_commands/test_help/test_tutorial002.py +++ b/tests/test_tutorial/test_commands/test_help/test_tutorial002.py @@ -26,7 +26,7 @@ def test_help_create(): assert "Some internal utility function to create." not in result.output -def test_help_create(): +def test_help_delete(): result = runner.invoke(app, ["delete", "--help"]) assert result.exit_code == 0 assert "Delete a user with USERNAME." in result.output