Skip to content

Commit 9c083ab

Browse files
committed
Use Property instead of Method for a test property name
1 parent 7b3546b commit 9c083ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DocumentationAnalyzers/DocumentationAnalyzers.Test/RefactoringRules/DOC900UnitTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@ class TestClass {
234234
///$$ <summary>
235235
/// Provide a `value`.
236236
/// </summary>
237-
int Method => 3;
237+
int Property => 3;
238238
}
239239
";
240240
var fixedCode = @"
241241
class TestClass {
242242
///$$ <summary>
243243
/// Provide a <c>value</c>.
244244
/// </summary>
245-
int Method => 3;
245+
int Property => 3;
246246
}
247247
";
248248

0 commit comments

Comments
 (0)