From 98ade374fa0ecba3dd6d8a6ea51a5f97961edf1c Mon Sep 17 00:00:00 2001 From: cfdaily Date: Sun, 17 May 2026 06:10:15 +0800 Subject: [PATCH] auto-sync: 2026-05-17 06:10:15 --- tests/test_experience.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_experience.py b/tests/test_experience.py index fd14d6a..af23c08 100644 --- a/tests/test_experience.py +++ b/tests/test_experience.py @@ -182,7 +182,7 @@ class TestRecommendation: store.add(Experience(category="pitfall", summary="Always close DB connections")) store.add(Experience(category="best_practice", summary="Use type hints")) - results = distiller.recommend(query="database") + results = distiller.recommend(query="db") assert len(results) >= 1 assert any("DB" in e.summary for e in results)