We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
None
[]
1 parent 04a16af commit 5c4e60bCopy full SHA for 5c4e60b
testkitbackend/totestkit.py
@@ -64,7 +64,8 @@ def serialize_notification(n: neo4j.SummaryNotification) -> dict:
64
65
def serialize_notifications() -> list[dict] | None:
66
if summary_.notifications is None:
67
- return None
+ gql_aware_protocol = summary_.server.protocol_version >= (5, 5)
68
+ return [] if gql_aware_protocol else None
69
return [
70
serialize_notification(n) for n in summary_.summary_notifications
71
]
0 commit comments