Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed Nov 22, 2024
1 parent 6795727 commit f8346cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/test/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,15 +730,13 @@ def test_filter_sort_collections(
def test_list_public_collections(
crawler_auth_headers, default_org_id, crawler_crawl_id, admin_crawl_id
):
SECOND_PUBLIC_COLL_NAME = "Second public collection"

# Create new public collection
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections",
headers=crawler_auth_headers,
json={
"crawlIds": [crawler_crawl_id],
"name": SECOND_COLL_NAME,
"name": "Second public collection",
},
)
assert r.status_code == 200
Expand Down

0 comments on commit f8346cb

Please sign in to comment.