@@ -105,17 +105,17 @@ class TestFileDeleteQuery:
105
105
def test_basic_query_syntax (self , index : int , query : str ) -> None :
106
106
"""Tests the basic file delete query syntax."""
107
107
examine_delete_query (query , f"/file/basic/test{ index } " )
108
-
108
+
109
109
@pytest .mark .parametrize (("index" , "query" ), recursive_command_test_params )
110
110
def test_recursive_command (self , index : int , query : str ) -> None :
111
111
"""Tests the recursive command in file delete query."""
112
112
examine_delete_query (query , f"/file/recursive/test{ index } " )
113
-
113
+
114
114
@pytest .mark .parametrize (("index" , "query" ), path_types_test_params )
115
115
def test_path_types (self , index : int , query : str ) -> None :
116
116
"""Tests all the available path types in file delete query."""
117
117
examine_delete_query (query , f"/file/path_types/test{ index } " )
118
-
118
+
119
119
# The following test uses the same delete queries defined for basic query syntax test
120
120
# comprising characters of mixed cases, and hence uses the file and directory records
121
121
# stored at the same path in the `test_delete_query.hdf` file.
@@ -153,12 +153,12 @@ class TestDirDeleteQuery:
153
153
def test_basic_query_syntax (self , index : int , query : str ) -> None :
154
154
"""Tests the basic directory delete query syntax."""
155
155
examine_delete_query (query , f"/dir/basic/test{ index } " )
156
-
156
+
157
157
@pytest .mark .parametrize (("index" , "query" ), path_types_test_params )
158
158
def test_path_types (self , index : int , query : str ) -> None :
159
159
"""Tests all the available path types in directory delete query."""
160
160
examine_delete_query (query , f"/dir/path_types/test{ index } " )
161
-
161
+
162
162
# The following test uses the same delete queries defined for basic query syntax test
163
163
# comprising characters of mixed cases, and hence uses the file and directory records
164
164
# stored at the same path in the `test_delete_query.hdf` file.
0 commit comments