Skip to content

Commit

Permalink
fixed issue with property test
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvreony committed Aug 14, 2022
1 parent b95b18a commit 471f9ae
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,19 @@ public void ReturnsWarningForPropertyAccess()
var test = @"
namespace System.Net
{
public sealed class ServicePoint
namespace Security
{
public sealed class RemoteCertificateValidationCallback
{
}
}
public sealed class System.Net.Security.RemoteCertificateValidationCallback
public sealed class ServicePoint
{
}
public sealed class ServicePointManager
public static class ServicePointManager
{
public static ServicePoint FindServicePoint()
{
Expand Down Expand Up @@ -116,7 +120,7 @@ public void MethodName()
Locations =
new[]
{
new DiagnosticResultLocation("Test0.cs", 19, 17)
new DiagnosticResultLocation("Test0.cs", 32, 59)
}
};

Expand Down

0 comments on commit 471f9ae

Please sign in to comment.