From ff0ae92717fde872e1cd1dc3a18bf731de892af9 Mon Sep 17 00:00:00 2001 From: Ross King Date: Wed, 2 Aug 2023 14:11:35 +1000 Subject: [PATCH] fix: update message for `.Should().Contain()` (#205) --- .../Tips/Collections/CollectionShouldContainItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FluentAssertions.Analyzers/Tips/Collections/CollectionShouldContainItem.cs b/src/FluentAssertions.Analyzers/Tips/Collections/CollectionShouldContainItem.cs index d1972471..1835a32d 100644 --- a/src/FluentAssertions.Analyzers/Tips/Collections/CollectionShouldContainItem.cs +++ b/src/FluentAssertions.Analyzers/Tips/Collections/CollectionShouldContainItem.cs @@ -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);