Skip to content

Commit

Permalink
Remove unnecessary print and file
Browse files Browse the repository at this point in the history
  • Loading branch information
earlinn committed Dec 28, 2023
1 parent a205302 commit 06c085c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 1 deletion.
Empty file removed backend/api/tests/__init__.py
Empty file.
1 change: 0 additions & 1 deletion backend/tests/api_tests/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def test_get_tag_by_id(client, tags):
def test_create_tag(auth_admin):
payload = {"name": TEST_NAME}
response = auth_admin.post(reverse("api:tag-list"), payload)
print(response.data)

assert response.status_code == 201
assert response.data["name"] == TEST_NAME
Expand Down

0 comments on commit 06c085c

Please sign in to comment.