Skip to content

Commit

Permalink
fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 13, 2024
1 parent f3108d6 commit 7a74498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/test/test_step_1/test_bbot_fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_bbot_fastapi():
continue

# run a scan
response = httpx.get("http://127.0.0.1:8978/start", params={"targets": ["example.com"]})
response = httpx.get("http://127.0.0.1:8978/start", params={"targets": ["127.0.0.1"]}, timeout=100)
events = response.json()
assert len(events) >= 3
scan_events = [e for e in events if e["type"] == "SCAN"]
Expand Down

0 comments on commit 7a74498

Please sign in to comment.