Skip to content

Commit

Permalink
refactor: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
knop-k committed Dec 29, 2023
1 parent c123e72 commit c5bd5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dshop/apps/products_catalogue/tests/test_api_products.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def test_product_detail(authenticated_api_client, create_active_product):
def test_create_product(authenticated_api_client, create_category):
url = reverse('products-api-list')
data = {
'category': create_category.id, # replace with an existing category ID
'category': create_category.id,
'name': 'Test Product',
'price': '19.99',
'short_description': 'Test short description',
Expand Down

0 comments on commit c5bd5a4

Please sign in to comment.