Skip to content

Commit 2ff504c

Browse files
committed
Fix violations of SA1137 (Elements should have the same indentation)
1 parent c46adeb commit 2ff504c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers.Test/SpacingRules/SA1009UnitTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,11 +385,11 @@ public async Task TestSpaceIncrementOrDecrementOperatorFollowingParenthesisAsync
385385
var invalidStatement = string.Format(
386386
@"int i = 0;
387387
(i) {0};",
388-
operatorValue);
388+
operatorValue);
389389
var validStatement = string.Format(
390390
@"int i = 0;
391391
(i){0};",
392-
operatorValue);
392+
operatorValue);
393393

394394
DiagnosticResult expected = this.CSharpDiagnostic().WithArguments(" not", "followed").WithLocation(8, 15);
395395

0 commit comments

Comments
 (0)