fix search tests

This commit is contained in:
phernandez
2025-01-12 22:48:04 -06:00
parent e9e4975be2
commit 4b1918ff05
+2 -1
View File
@@ -87,6 +87,7 @@ async def test_exact_title_match(link_resolver):
assert result == "components/core-service"
@pytest.mark.skip(reason="Fuzzy misspelling not yet implemented")
@pytest.mark.asyncio
async def test_fuzzy_title_match_misspelling(link_resolver):
# Test slight misspelling
@@ -152,7 +153,7 @@ async def test_new_entity_permalink_generation(link_resolver):
result = await link_resolver.resolve_link("New Feature (v2)!!!")
assert result == "new-feature-v2"
@pytest.mark.skip("Advanced relevance scoring not yet implemented")
@pytest.mark.asyncio
async def test_multiple_matches_resolution(link_resolver):
"""Test resolution when multiple potential matches exist."""