We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cc7f5 commit e9d71aaCopy full SHA for e9d71aa
test/Seq.Api.Tests/SeqConnectionTests.cs
@@ -9,10 +9,12 @@ public void WhenConstructedTheHandlerConfigurationCallbackIsCalled()
9
{
10
var callCount = 0;
11
12
+#pragma warning disable CS0618 // Type or member is obsolete
13
using var _ = new SeqConnection("https://test.example.com", null, handler => {
14
Assert.NotNull(handler);
15
++callCount;
16
});
17
+#pragma warning restore CS0618 // Type or member is obsolete
18
19
Assert.Equal(1, callCount);
20
}
0 commit comments