Skip to content

Commit

Permalink
fix: update message for .Should().Contain() (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsking authored Aug 2, 2023
1 parent d1228ea commit ff0ae92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CollectionShouldContainItemAnalyzer : CollectionAnalyzer
public const string DiagnosticId = Constants.Tips.Collections.CollectionShouldContainItem;
public const string Category = Constants.Tips.Category;

public const string Message = "Use .Should()Contain() instead.";
public const string Message = "Use .Should().Contain() instead.";

protected override DiagnosticDescriptor Rule => new DiagnosticDescriptor(DiagnosticId, Title, Message, Category, DiagnosticSeverity.Info, true);

Expand Down

0 comments on commit ff0ae92

Please sign in to comment.