From b284030125cb6ad83616383bad62fc5935db968b Mon Sep 17 00:00:00 2001 From: Eric Chou Date: Thu, 31 Dec 2020 14:12:15 -0800 Subject: [PATCH] Update test_recipe_api.py PrivateRecipeApiTests description should be 'test authenticated recipe API access' instead of 'test unauthenticated recipe API access', I believe. --- app/recipe/tests/test_recipe_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/recipe/tests/test_recipe_api.py b/app/recipe/tests/test_recipe_api.py index f76dce3..9492f78 100644 --- a/app/recipe/tests/test_recipe_api.py +++ b/app/recipe/tests/test_recipe_api.py @@ -64,7 +64,7 @@ def test_auth_required(self): class PrivateRecipeApiTests(TestCase): - """Test unauthenticated recipe API access""" + """Test authenticated recipe API access""" def setUp(self): self.client = APIClient()