Skip to content

Commit f6288bf

Browse files
Merge branch 'fix-null-notifications-testkit' into 6.x
2 parents cef8536 + f88ae66 commit f6288bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/SummaryJsonSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private static object MapNotifications(IList<INotification> notifications)
167167
{
168168
if (notifications == null)
169169
{
170-
return null;
170+
return new List<object>();
171171
}
172172

173173
if (notifications.All(x => x.Position == null))

0 commit comments

Comments
 (0)