diff --git a/v1/recipe/tests.py b/v1/recipe/tests.py index 5ca7d37..da2de5c 100644 --- a/v1/recipe/tests.py +++ b/v1/recipe/tests.py @@ -37,7 +37,7 @@ def test_rating_over_success(self): recipe = mock.Mock(spec=Recipe) response = self.serializer.update(recipe, data) - self.assertEqual(response.rating, 50) + self.assertEqual(response.rating, 5) def test_rating_under_success(self): data = deepcopy(self.data)