Browse Source

Fix #3611: Update test cases to reflect original test

pull/3638/head
Siegfried Pammer 2 weeks ago
parent
commit
17016c7beb
  1. 4
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3452.cs
  2. 4
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3610.cs

4
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3452.cs

@ -1,5 +1,3 @@
#pragma warning disable CS9124
using System; using System;
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@ -29,7 +27,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
internal StringComparison Test() internal StringComparison Test()
{ {
return comparison; return _comparison;
} }
} }

4
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3610.cs

@ -1,5 +1,3 @@
#pragma warning disable CS9124
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
@ -47,7 +45,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
public bool Func() public bool Func()
{ {
return value == StringComparison.Ordinal; return _value == StringComparison.Ordinal;
} }
} }

Loading…
Cancel
Save