@@ -74,15 +74,15 @@ def test_impacted_docs_detect_matching_source_changes(tmp_path):
7474def test_read_path_list_file (tmp_path ):
7575 path_list = tmp_path / "changed_files.txt"
7676 path_list .write_text (
77- "\n camel/agents/chat_agent.py\n \n services/doc_sync .py\n " ,
77+ "\n camel/agents/chat_agent.py\n \n camel/models/base_model .py\n " ,
7878 encoding = "utf-8" ,
7979 )
8080
8181 changed_files = doc_code_map ._read_path_list (path_list )
8282
8383 assert changed_files == [
8484 "camel/agents/chat_agent.py" ,
85- "services/doc_sync .py" ,
85+ "camel/models/base_model .py" ,
8686 ]
8787
8888
@@ -116,8 +116,9 @@ def test_resolve_code_respects_budget_after_truncation(tmp_path, monkeypatch):
116116def test_filter_changed_python_files_keeps_only_supported_roots ():
117117 changed_files = [
118118 "camel/agents/chat_agent.py" ,
119- "services/doc_sync .py" ,
119+ "camel/models/base_model .py" ,
120120 "docs/mintlify/key_modules/agents.mdx" ,
121+ "services/doc_sync.py" ,
121122 "tests/test_docs.py" ,
122123 "camel/agents/README.md" ,
123124 ]
@@ -126,7 +127,7 @@ def test_filter_changed_python_files_keeps_only_supported_roots():
126127
127128 assert filtered == [
128129 "camel/agents/chat_agent.py" ,
129- "services/doc_sync .py" ,
130+ "camel/models/base_model .py" ,
130131 ]
131132
132133
0 commit comments