Skip to content

Commit 1a61c29

Browse files
committed
fix build
1 parent 7f4094e commit 1a61c29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Tests/Analyzers.Tests/RCS1248NormalizeNullCheckTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,15 +215,15 @@ void M()
215215
[Fact, Trait(Traits.Analyzer, DiagnosticIdentifiers.NormalizeNullCheck)]
216216
public async Task TestNoDiagnostic_ExpressionTree2()
217217
{
218-
await VerifyNoDiagnosticAsync(@"
218+
await VerifyNoDiagnosticAsync("""
219219
using System.Linq;
220220
221221
class C
222222
{
223223
void M()
224224
{
225-
var _ = from x in new[] { ""a"" }.AsQueryable()
226-
join yy in new[] { ""b"" }.AsQueryable()
225+
var _ = from x in new[] { "a" }.AsQueryable()
226+
join yy in new[] { "b" }.AsQueryable()
227227
on x equals yy into y
228228
from yy in y.DefaultIfEmpty()
229229
select new
@@ -232,6 +232,6 @@ from yy in y.DefaultIfEmpty()
232232
};
233233
}
234234
}
235-
", options: Options.AddConfigOption(ConfigOptionKeys.NullCheckStyle, ConfigOptionValues.NullCheckStyle_PatternMatching));
235+
""", options: Options.AddConfigOption(ConfigOptionKeys.NullCheckStyle, ConfigOptionValues.NullCheckStyle_PatternMatching));
236236
}
237237
}

0 commit comments

Comments
 (0)