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.
1 parent 9ad50c1 commit 74bb4d7Copy full SHA for 74bb4d7
UnitTests/MessageThreadingTests.cs
@@ -312,12 +312,12 @@ public void TestThreadableNodeUnusedProperties ()
312
Assert.That (node.Body, Is.Null, "Body");
313
Assert.That (node.TextBody, Is.Null, "TextBody");
314
Assert.That (node.HtmlBody, Is.Null, "HtmlBody");
315
- Assert.That (node.BodyParts, Is.Null, "BodyParts");
316
- Assert.That (node.Attachments, Is.Null, "Attachments");
+ Assert.That (node.BodyParts, Is.Empty, "BodyParts");
+ Assert.That (node.Attachments, Is.Empty, "Attachments");
317
Assert.That (node.PreviewText, Is.Null, "PreviewText");
318
Assert.That (node.Envelope, Is.Null, "Envelope");
319
Assert.That (node.Flags.HasValue, Is.False, "Flags");
320
- Assert.That (node.Keywords, Is.Null, "Keywords");
+ Assert.That (node.Keywords, Is.Empty, "Keywords");
321
Assert.That (node.Headers, Is.Null, "Headers");
322
Assert.That (node.InternalDate.HasValue, Is.False, "InternalDate");
323
Assert.That (node.EmailId, Is.Null, "EmailId");
0 commit comments