Skip to content

Commit 73bfec6

Browse files
committed
Merge branch 'RecordMetrics' of github.com:nodestream-proj/nodestream-plugin-neo4j into RecordMetrics
2 parents f8b9d8b + 82b0eb4 commit 73bfec6

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)