Skip to content

Commit f8772a7

Browse files
Remove redundant comments in test_parsers.py
1 parent 96f87ca commit f8772a7

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

tests/test_query/test_handlers/test_parsers.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,6 @@ class TestFileDataQueryParser:
220220
"filename, filepath FROM ABSOLUTE . WHERE 'test' in data",
221221
]
222222

223-
# The following are test results for the search query tests comprising sub-lists, each with
224-
# a variable length where the first element of each of them signifies whether the path is
225-
# absolute (True) or relative (False) whereas the last element in it is a list comprising
226-
# names of the search fields. All the remaining objects within the list are test specific
227-
# and may differ in different tests.
228-
229223
search_query_test_results = [
230224
[False, list(constants.DATA_FIELDS)],
231225
[True, ["name", "path", "dataline"]],
@@ -299,12 +293,6 @@ class TestDirectoryQueryParser:
299293
"FROM RELATIVE . WHERE atime <= '2012-02-17' OR ctime <= '2015-03-23'",
300294
]
301295

302-
# The following are test results for the search query tests comprising sub-lists, each with
303-
# a variable length where the first element of each of them signifies whether the path is
304-
# absolute (True) or relative (False) whereas the last element in it is a list comprising
305-
# names of the search fields. All the remaining objects within the list are test specific
306-
# and may differ in different tests.
307-
308296
search_query_test_results = [
309297
[False, list(constants.DIR_FIELDS)],
310298
[True, ["name", "path", "parent"]],
@@ -318,10 +306,6 @@ class TestDirectoryQueryParser:
318306
[False, ["modify_time", "create_time"], ["mtime", "ctime"]],
319307
]
320308

321-
# The following are test results for the delete query tests and comprise boolean
322-
# objects associated with the delete queries. These boolean objects signify whether
323-
# the path type in the query is absolute (True) or relative (False).
324-
325309
delete_query_test_results = [True, False, False]
326310

327311
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)