PunimTag Web Application - Major Feature Release #1

Open
tanyar09 wants to merge 106 commits from dev into master
Showing only changes of commit 79d20ecce8 - Show all commits

View File

@ -230,7 +230,7 @@ class TestPhotoFavorites:
):
"""Verify adding favorite."""
response = test_client.post(
f"/api/v1/photos/{test_photo.id}/favorite",
f"/api/v1/photos/{test_photo.id}/toggle-favorite",
headers=auth_headers,
)
@ -264,7 +264,7 @@ class TestPhotoFavorites:
# Remove it
response = test_client.post(
f"/api/v1/photos/{test_photo.id}/favorite",
f"/api/v1/photos/{test_photo.id}/toggle-favorite",
headers=auth_headers,
)
@ -279,7 +279,7 @@ class TestPhotoFavorites:
):
"""Verify 401 without auth."""
response = test_client.post(
f"/api/v1/photos/{test_photo.id}/favorite",
f"/api/v1/photos/{test_photo.id}/toggle-favorite",
)
assert response.status_code == 401
@ -291,7 +291,7 @@ class TestPhotoFavorites:
):
"""Verify 404 for non-existent photo."""
response = test_client.post(
"/api/v1/photos/99999/favorite",
"/api/v1/photos/99999/toggle-favorite",
headers=auth_headers,
)