Skip to content

Commit

Permalink
Amend
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLarsson committed Jun 2, 2022
1 parent fe9430f commit abeac01
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,9 @@ class C
[TestCase("m_")]
public static void AnalyzerWithConfiguration(string? prefix)
{
string? analyzerConfig = prefix is null ? null :
$"dotnet_diagnostic.SA1309.field_name_prefix = {prefix}";
var analyzerConfig = prefix is null
? null
: $"dotnet_diagnostic.SA1309.field_name_prefix = {prefix}";

var code = @"
namespace N
Expand Down

0 comments on commit abeac01

Please sign in to comment.