Browse Source

Fix unit tests.

pull/2427/head
Siegfried Pammer 4 years ago
parent
commit
39404d9ea1
  1. 2
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/CS9_ExtensionGetEnumerator.cs

2
ICSharpCode.Decompiler.Tests/TestCases/Pretty/CS9_ExtensionGetEnumerator.cs

@ -16,7 +16,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty @@ -16,7 +16,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
public void Test(NonGeneric c)
{
foreach (object? item in c)
foreach (object item in c)
{
Console.WriteLine(item);
}

Loading…
Cancel
Save