@@ -220,12 +220,6 @@ class TestFileDataQueryParser:
220
220
"filename, filepath FROM ABSOLUTE . WHERE 'test' in data" ,
221
221
]
222
222
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
-
229
223
search_query_test_results = [
230
224
[False , list (constants .DATA_FIELDS )],
231
225
[True , ["name" , "path" , "dataline" ]],
@@ -299,12 +293,6 @@ class TestDirectoryQueryParser:
299
293
"FROM RELATIVE . WHERE atime <= '2012-02-17' OR ctime <= '2015-03-23'" ,
300
294
]
301
295
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
-
308
296
search_query_test_results = [
309
297
[False , list (constants .DIR_FIELDS )],
310
298
[True , ["name" , "path" , "parent" ]],
@@ -318,10 +306,6 @@ class TestDirectoryQueryParser:
318
306
[False , ["modify_time" , "create_time" ], ["mtime" , "ctime" ]],
319
307
]
320
308
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
-
325
309
delete_query_test_results = [True , False , False ]
326
310
327
311
@pytest .mark .parametrize (
0 commit comments