File tree Expand file tree Collapse file tree 1 file changed +1
-31
lines changed Expand file tree Collapse file tree 1 file changed +1
-31
lines changed Original file line number Diff line number Diff line change @@ -259,36 +259,6 @@ def test_query_batch_as_query_with_custom_parameters():
259
259
)
260
260
261
261
262
- def test_apoc_batch_query_response_fields ():
263
- expected_fields = [
264
- "batches" ,
265
- "total" ,
266
- "timeTaken" ,
267
- "committedOperations" ,
268
- "failedOperations" ,
269
- "failedBatches" ,
270
- "retries" ,
271
- "errorMessages" ,
272
- "wasTerminated" ,
273
- "updateStatistics" ,
274
- ]
275
- assert_that (
276
- APOC_BATCH_QUERY_RESPONSE_FIELDS ,
277
- contains_inanyorder (
278
- "batches" ,
279
- "total" ,
280
- "timeTaken" ,
281
- "committedOperations" ,
282
- "failedOperations" ,
283
- "failedBatches" ,
284
- "retries" ,
285
- "errorMessages" ,
286
- "wasTerminated" ,
287
- "updateStatistics" ,
288
- ),
289
- )
290
-
291
-
292
262
def test_unwind_query ():
293
263
assert_that (
294
264
UNWIND_QUERY , equal_to ("UNWIND $batched_parameter_sets as params RETURN params" )
@@ -302,4 +272,4 @@ def test_yield_clause_contains_all_fields():
302
272
303
273
def test_return_clause_contains_all_fields ():
304
274
expected_return = f"RETURN { ', ' .join (APOC_BATCH_QUERY_RESPONSE_FIELDS )} "
305
- assert_that (RETURN_CLAUSE , equal_to (expected_return ))
275
+ assert_that (RETURN_CLAUSE , equal_to (expected_return ))
You can’t perform that action at this time.
0 commit comments