Skip to content

Commit 515d390

Browse files
committed
Minor fixes
1 parent 8f05072 commit 515d390

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ All tools live in `academia_mcp/tools/` and follow this pattern:
100100
- Tools import from shared utilities (`utils.py`, `llm.py`, `settings.py`)
101101

102102
**Key Tool Categories:**
103-
- **Search tools**: arxiv_search.py, anthology_search.py, openalex.py, s2.py, hf_datasets_search.py, web_search.py
103+
- **Search tools**: arxiv_search.py, anthology_search.py, s2.py, hf_datasets_search.py, web_search.py
104104
- **Fetch/download tools**: arxiv_download.py, visit_webpage.py, review.py
105105
- **Document processing**: latex.py (compile_latex, read_pdf), image_processing.py
106106
- **LLM-powered tools**: document_qa.py, bitflip.py (research proposals), review.py

tests/test_anthology_search.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ def test_anthology_search_sort_by_options() -> None:
5454
assert len(result.results) > 0
5555

5656

57-
def sort_order_options() -> None:
58-
result1 = anthology_search("abs:physics", sort_order="ascending")
59-
result2 = anthology_search("abs:physics", sort_order="descending")
57+
def test_anthology_search_sort_order_options() -> None:
58+
result1 = anthology_search("abs:physics", sort_by="published", sort_order="ascending")
59+
result2 = anthology_search("abs:physics", sort_by="published", sort_order="descending")
6060
assert isinstance(result1, AnthologySearchResponse)
6161
assert len(result1.results) > 0
6262
assert isinstance(result2, AnthologySearchResponse)

tests/test_arxiv_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_arxiv_search_sort_by_options() -> None:
5151
assert result.total_count > 0
5252

5353

54-
def sort_order_options() -> None:
54+
def test_arxiv_search_sort_order_options() -> None:
5555
result1 = arxiv_search("abs:physics", sort_order="ascending")
5656
result2 = arxiv_search("abs:physics", sort_order="descending")
5757
assert result1.total_count > 0

0 commit comments

Comments
 (0)