Browse Source

Allow nullable annotations in ExtensionProperties test case

pull/3588/head
Siegfried Pammer 2 months ago
parent
commit
2f8f753a8c
  1. 2
      ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs

2
ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs

@ -562,7 +562,7 @@ namespace ICSharpCode.Decompiler.Tests @@ -562,7 +562,7 @@ namespace ICSharpCode.Decompiler.Tests
[Test]
public async Task ExtensionProperties([ValueSource(nameof(roslyn4OrNewerOptions))] CompilerOptions cscOptions)
{
await RunForLibrary(cscOptions: cscOptions | CompilerOptions.Preview);
await RunForLibrary(cscOptions: cscOptions | CompilerOptions.Preview | CompilerOptions.NullableEnable);
}
[Test]

Loading…
Cancel
Save