@@ -78,7 +78,6 @@ async def test_chatgpt_search_basic(mcp_server, app, test_project):
7878 "search" ,
7979 {
8080 "query" : "Machine Learning" ,
81- "project" : test_project .name ,
8281 },
8382 )
8483
@@ -109,7 +108,6 @@ async def test_chatgpt_search_empty_results(mcp_server, app, test_project):
109108 "search" ,
110109 {
111110 "query" : "NonExistentTopic12345" ,
112- "project" : test_project .name ,
113111 },
114112 )
115113
@@ -156,7 +154,6 @@ async def test_chatgpt_search_with_boolean_operators(mcp_server, app, test_proje
156154 "search" ,
157155 {
158156 "query" : "Python AND frameworks" ,
159- "project" : test_project .name ,
160157 },
161158 )
162159
@@ -208,7 +205,6 @@ def wrapper(*args, **kwargs):
208205 "fetch" ,
209206 {
210207 "id" : "Advanced Python Techniques" ,
211- "project" : test_project .name ,
212208 },
213209 )
214210
@@ -249,7 +245,6 @@ async def test_chatgpt_fetch_by_permalink(mcp_server, app, test_project):
249245 "search" ,
250246 {
251247 "query" : "Test Document" ,
252- "project" : test_project .name ,
253248 },
254249 )
255250
@@ -262,7 +257,6 @@ async def test_chatgpt_fetch_by_permalink(mcp_server, app, test_project):
262257 "fetch" ,
263258 {
264259 "id" : permalink ,
265- "project" : test_project .name ,
266260 },
267261 )
268262
@@ -283,7 +277,6 @@ async def test_chatgpt_fetch_nonexistent_document(mcp_server, app, test_project)
283277 "fetch" ,
284278 {
285279 "id" : "NonExistentDocument12345" ,
286- "project" : test_project .name ,
287280 },
288281 )
289282
@@ -322,7 +315,6 @@ async def test_chatgpt_fetch_with_empty_title(mcp_server, app, test_project):
322315 "fetch" ,
323316 {
324317 "id" : "untitled-note" ,
325- "project" : test_project .name ,
326318 },
327319 )
328320
@@ -359,7 +351,6 @@ async def test_chatgpt_search_pagination_default(mcp_server, app, test_project):
359351 "search" ,
360352 {
361353 "query" : "Test Note" ,
362- "project" : test_project .name ,
363354 },
364355 )
365356
@@ -381,7 +372,6 @@ async def test_chatgpt_tools_error_handling(mcp_server, app, test_project):
381372 "search" ,
382373 {
383374 "query" : "" , # Empty query might cause an error
384- "project" : test_project .name ,
385375 },
386376 )
387377
@@ -444,7 +434,6 @@ async def test_chatgpt_integration_workflow(mcp_server, app, test_project):
444434 "search" ,
445435 {
446436 "query" : "API" ,
447- "project" : test_project .name ,
448437 },
449438 )
450439
@@ -457,7 +446,6 @@ async def test_chatgpt_integration_workflow(mcp_server, app, test_project):
457446 "fetch" ,
458447 {
459448 "id" : first_result_id ,
460- "project" : test_project .name ,
461449 },
462450 )
463451
0 commit comments