Skip to content

Commit 196c02f

Browse files
Fix typos in docs in test_search_query.py
1 parent 66b969f commit 196c02f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_query/test_search_query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_basic_query_syntax(self, query: str) -> None:
7676

7777
@pytest.mark.parametrize("field", individual_fields_test_params)
7878
def test_individual_fields(self, field: str) -> None:
79-
"""Tests file search queries with all file fields individually"""
79+
"""Tests file search queries with all fields individually"""
8080

8181
query: str = f"SELECT {field} FROM '{FILE_DIR_TEST_DIRECTORY}'"
8282
examine_search_query(query)
@@ -146,7 +146,7 @@ def test_basic_query_syntax(self, query: str) -> None:
146146

147147
@pytest.mark.parametrize("field", individual_fields_test_params)
148148
def test_individual_fields(self, field: str) -> None:
149-
"""Tests file search queries with all directory fields individually"""
149+
"""Tests directory search queries with all fields individually"""
150150

151151
query: str = f"SELECT[TYPE DIR] {field} FROM '{FILE_DIR_TEST_DIRECTORY}'"
152152
examine_search_query(query)

0 commit comments

Comments
 (0)