This commit is contained in:
Fahad
2025-06-13 16:13:02 +04:00
parent a7b27b285c
commit fb69ebebe4
2 changed files with 6 additions and 6 deletions

View File

@@ -246,9 +246,9 @@ class TestCollaborationWorkflow:
)
response = json.loads(result[0].text)
assert response["status"] == "requires_clarification", (
"Should request clarification when asked about dependencies without package files"
)
assert (
response["status"] == "requires_clarification"
), "Should request clarification when asked about dependencies without package files"
clarification = json.loads(response["content"])
assert "package.json" in str(clarification["files_needed"]), "Should specifically request package.json"