Skip to content

Commit efbac6c

Browse files
committed
more debugging
1 parent 0dddbaa commit efbac6c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_canary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def update_canary_issue(config: Dict[str, Any], test_stats: Dict[str, Any]):
130130
- ✅ Project Items: {test_stats.get('project_items_count', 0)} items
131131
132132
## MCP Tools Verified
133-
{chr(10).join(f'- ✅ `{tool}`' for tool in test_stats.get('verified_tools', []))}
133+
{chr(10).join('- ✅ `' + tool + '`' for tool in test_stats.get('verified_tools', []))}
134134
135135
## System Information
136136
- **Python Version:** {test_stats.get('python_version', 'Unknown')}

tests/test_live_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def create_or_update_test_issue(self, config: Dict[str, Any], test_stats: Dict[s
7979
- ✅ Project Fields: {test_stats.get('project_fields_count', 0)} fields
8080
8181
## MCP Tools Verified
82-
{chr(10).join(f'- ✅ `{tool}`' for tool in test_stats.get('verified_tools', []))}
82+
{chr(10).join('- ✅ `' + tool + '`' for tool in test_stats.get('verified_tools', []))}
8383
8484
## System Information
8585
- **Python Version:** {test_stats.get('python_version', 'Unknown')}
@@ -266,7 +266,7 @@ async def test_full_mcp_integration_with_evidence(self, test_config: Dict[str, A
266266
assert test_stats['passed_tests'] >= 4, f"Expected at least 4 passing tests, got {test_stats['passed_tests']}"
267267
assert test_stats['success_rate'] >= 80, f"Expected at least 80% success rate, got {test_stats['success_rate']:.1f}%"
268268

269-
print(f"\\n[SUCCESS] Integration test completed successfully!")
269+
print(f"\n[SUCCESS] Integration test completed successfully!")
270270
print(f"[STATS] Results: {test_stats['passed_tests']}/{test_stats['total_tests']} tests passed ({test_stats['success_rate']:.1f}% success rate)")
271271
print(f"[TOOLS] Tools verified: {', '.join(test_stats['verified_tools'])}")
272272

0 commit comments

Comments
 (0)