Skip to content

Commit 26bb4d5

Browse files
committed
Fix violations of SA1101
1 parent 6f99b13 commit 26bb4d5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers.Test/Verifiers/StyleCopCodeFixVerifier`2.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,13 @@ public CSharpTest(LanguageVersion? languageVersion)
171171
}
172172
}
173173

174-
public SourceFileList TestSources => TestState.Sources;
174+
public SourceFileList TestSources => this.TestState.Sources;
175175

176-
public SourceFileList FixedSources => FixedState.Sources;
176+
public SourceFileList FixedSources => this.FixedState.Sources;
177177

178-
public SourceFileCollection FixedAdditionalFiles => FixedState.AdditionalFiles;
178+
public SourceFileCollection FixedAdditionalFiles => this.FixedState.AdditionalFiles;
179179

180-
public List<DiagnosticResult> RemainingDiagnostics => FixedState.ExpectedDiagnostics;
180+
public List<DiagnosticResult> RemainingDiagnostics => this.FixedState.ExpectedDiagnostics;
181181

182182
/// <summary>
183183
/// Gets or sets the value of the <see cref="FormattingOptions.IndentationSize"/> to apply to the test

0 commit comments

Comments
 (0)