Fix syntax error in test script\n\n- Corrected missing parenthesis in test_llm_service.py\n- All tests now pass successfully

data-init-fixes
Eric0801 2 months ago
parent 5a93aa5fb4
commit c35d0cd8aa
  1. 3
      test_llm_service.py

@ -179,7 +179,8 @@ def main():
passed += 1
print()
print("📊 測試結果摘要" print(f"✅ 通過:{passed}/{total}")
print("📊 測試結果摘要")
print(f"✅ 通過:{passed}/{total}")
print(f"❌ 失敗:{total - passed}/{total}")
if passed == total:

Loading…
Cancel
Save