Skip to content

Commit 82b0eb4

Browse files
Update tests/unit/test_query.py
Co-authored-by: Jon Bristow <[email protected]>
1 parent 3511c09 commit 82b0eb4

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

tests/unit/test_query.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,21 @@ def test_apoc_batch_query_response_fields():
272272
"wasTerminated",
273273
"updateStatistics",
274274
]
275-
assert_that(set(APOC_BATCH_QUERY_RESPONSE_FIELDS), equal_to(set(expected_fields)))
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+
)
276290

277291

278292
def test_unwind_query():

0 commit comments

Comments
 (0)