Skip to content

Commit 62bfebc

Browse files
committed
Update test assertions for AI summary output format
1 parent 8bf8a1a commit 62bfebc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_llm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def test_ai_diffs_summary(self):
1414
with open(file_path, "r") as f:
1515
git_diff_json = json.loads(f.read())
1616
summary_report = ai_diffs_summary(git_diff_json)
17-
self.assertIn("AI 摘要(实验)", summary_report)
18-
self.assertIn("AI 模型", summary_report)
17+
self.assertIn("AI Summary(experiment)", summary_report)
18+
self.assertIn("Powered by", summary_report)
1919
print(summary_report)
2020

2121

0 commit comments

Comments
 (0)