Skip to content

Commit

Permalink
fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Charlamb committed Dec 10, 2024
1 parent 771949d commit 635a966
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/native/managed/cdacreader/tests/MethodDescTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ public void MethodDescGetMethodDescTokenOk(MockTarget.Architecture arch)
Assert.False(isCollectible);
TargetPointer versioning = rts.GetMethodDescVersioningState(handle);
Assert.Equal(TargetPointer.Null, versioning);
TargetPointer? gcCoverageInfo = rts.GetGCCoverageInfo(handle);
Assert.NotNull(gcCoverageInfo);
Assert.Equal(TargetPointer.Null, gcCoverageInfo.Value);
TargetPointer gcStressCodeCopy = rts.GetGCStressCodeCopy(handle);
Assert.Equal(TargetPointer.Null, gcStressCodeCopy);
}

public static IEnumerable<object[]> StdArchOptionalSlotsData()
Expand Down

0 comments on commit 635a966

Please sign in to comment.