Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CollectionShouldBeInDescendingOrderAnalyzer : FluentAssertionsAnaly
public const string DiagnosticId = Constants.Tips.Collections.CollectionShouldBeInDescendingOrder;
public const string Category = Constants.Tips.Category;

public const string Message = "Use {0} .Should() followed by .BeInDescendingOrder instead.";
public const string Message = "Use {0} .Should() followed by .BeInDescendingOrder() instead.";

protected override DiagnosticDescriptor Rule => new DiagnosticDescriptor(DiagnosticId, Title, Message, Category, DiagnosticSeverity.Info, true);
protected override IEnumerable<FluentAssertionsCSharpSyntaxVisitor> Visitors
Expand Down