Lint
This commit is contained in:
@@ -122,7 +122,9 @@ class TestConsensusConversation(ConversationBaseTest):
|
||||
# Check for step 1 status (Claude analysis + first model consultation)
|
||||
expected_status = "analysis_and_first_model_consulted"
|
||||
if consensus_data.get("status") != expected_status:
|
||||
self.logger.error(f"Consensus step 1 failed with status: {consensus_data.get('status')}, expected: {expected_status}")
|
||||
self.logger.error(
|
||||
f"Consensus step 1 failed with status: {consensus_data.get('status')}, expected: {expected_status}"
|
||||
)
|
||||
if "error" in consensus_data:
|
||||
self.logger.error(f"Error: {consensus_data['error']}")
|
||||
return False
|
||||
|
||||
@@ -75,7 +75,9 @@ class TestConsensusThreeModels(BaseSimulatorTest):
|
||||
# Check for step 1 status (Claude analysis + first model consultation)
|
||||
expected_status = "analysis_and_first_model_consulted"
|
||||
if consensus_data["status"] != expected_status:
|
||||
self.logger.error(f"Three-model consensus step 1 failed with status: {consensus_data['status']}, expected: {expected_status}")
|
||||
self.logger.error(
|
||||
f"Three-model consensus step 1 failed with status: {consensus_data['status']}, expected: {expected_status}"
|
||||
)
|
||||
|
||||
# Log additional error details for debugging
|
||||
if "error" in consensus_data:
|
||||
|
||||
Reference in New Issue
Block a user