From a4aa5d71b1999fd783479815b025c1637b3f8475 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Mon, 14 Feb 2022 21:55:06 -0600 Subject: [PATCH] refactor: Disable nullability in Verify.cs --- src/TestLibrary/NSubstitute/Verify.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/TestLibrary/NSubstitute/Verify.cs b/src/TestLibrary/NSubstitute/Verify.cs index c5fc045b..5d63211f 100644 --- a/src/TestLibrary/NSubstitute/Verify.cs +++ b/src/TestLibrary/NSubstitute/Verify.cs @@ -6,6 +6,10 @@ using NSubstitute.Core.Arguments; namespace TestLibrary.NSubstitute; +// Interface changes in IArgumentMatcher make nullability difficult +// to deal with. So we just ignore that here for now. +#nullable disable + public static class Verify { public static T That(Action action)