Skip to content

Commit 74bb4d7

Browse files
committed
Fixed MessageThreadingTests
1 parent 9ad50c1 commit 74bb4d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UnitTests/MessageThreadingTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,12 +312,12 @@ public void TestThreadableNodeUnusedProperties ()
312312
Assert.That (node.Body, Is.Null, "Body");
313313
Assert.That (node.TextBody, Is.Null, "TextBody");
314314
Assert.That (node.HtmlBody, Is.Null, "HtmlBody");
315-
Assert.That (node.BodyParts, Is.Null, "BodyParts");
316-
Assert.That (node.Attachments, Is.Null, "Attachments");
315+
Assert.That (node.BodyParts, Is.Empty, "BodyParts");
316+
Assert.That (node.Attachments, Is.Empty, "Attachments");
317317
Assert.That (node.PreviewText, Is.Null, "PreviewText");
318318
Assert.That (node.Envelope, Is.Null, "Envelope");
319319
Assert.That (node.Flags.HasValue, Is.False, "Flags");
320-
Assert.That (node.Keywords, Is.Null, "Keywords");
320+
Assert.That (node.Keywords, Is.Empty, "Keywords");
321321
Assert.That (node.Headers, Is.Null, "Headers");
322322
Assert.That (node.InternalDate.HasValue, Is.False, "InternalDate");
323323
Assert.That (node.EmailId, Is.Null, "EmailId");

0 commit comments

Comments
 (0)