From 21f183556761d5001bf05ff612dc0f5dd47c7e18 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 15 Oct 2014 17:36:19 +0200 Subject: [PATCH] Fix milestone test name. --- tests/integration/test_milestones.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/test_milestones.py b/tests/integration/test_milestones.py index ab5cc962..e32f23ac 100644 --- a/tests/integration/test_milestones.py +++ b/tests/integration/test_milestones.py @@ -29,8 +29,7 @@ from .. import factories as f pytestmark = pytest.mark.django_db - -def test_api_update_milestone(client): +def test_update_milestone_with_userstories_list(client): user = f.UserFactory.create() project = f.ProjectFactory.create(owner=user) role = f.RoleFactory.create(project=project)