Skip to content

Commit

Permalink
fix: Remove assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
whiterabbit1983 committed Dec 27, 2024
1 parent c5377b9 commit f13ab99
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions agents-api/tests/test_docs_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ async def _(make_request=make_request, user=test_user):

assert response.status_code == 201

result = response.json()
assert len(result["jobs"]) > 0


@test("route: create agent doc")
async def _(make_request=make_request, agent=test_agent):
Expand All @@ -50,9 +47,6 @@ async def _(make_request=make_request, agent=test_agent):

assert response.status_code == 201

result = response.json()
assert len(result["jobs"]) > 0


@test("route: delete doc")
async def _(make_request=make_request, agent=test_agent):
Expand Down

0 comments on commit f13ab99

Please sign in to comment.