Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lonitra committed Jan 18, 2024
1 parent 0083872 commit 35fe47a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ public unsafe void ClipBoard_GetClipboard_ReturnsProxy()
// The proxy does not know about this interface, it should give back the real pointer.
using var realDataPointer = proxy.Query<Com.IComCallableWrapper>();
using var realDataPointerUnknown = realDataPointer.Query<Com.IUnknown>();
((nint)proxyUnknown.Value).Should().NotBe((nint)realDataPointer.Value);
((nint)proxyUnknown.Value).Should().NotBe((nint)realDataPointerUnknown.Value);
((nint)dataUnknown.Value).Should().Be((nint)realDataPointerUnknown.Value);
}
}

0 comments on commit 35fe47a

Please # to comment.