Skip to content

Commit fbfb317

Browse files
chore(deps): update xunit-dotnet monorepo (#201)
* chore(deps): update xunit-dotnet monorepo * test: fix build error * test: fix build error --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FantasticFiasco <mattias@kindb.org>
1 parent e77c9f8 commit fbfb317

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

test/Serilog.Sinks.UdpTests/Serilog.Sinks.UdpTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
2121
<PackageReference Include="Serilog.Settings.Configuration" Version="10.0.0" />
2222
<PackageReference Include="Shouldly" Version="4.3.0" />
23-
<PackageReference Include="xunit" Version="2.7.1" />
24-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
23+
<PackageReference Include="xunit" Version="2.9.3" />
24+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
<PrivateAssets>all</PrivateAssets>
2727
</PackageReference>

test/Serilog.Sinks.UdpTests/Sinks/Udp/Private/UdpClientFactoryShould.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Net;
33
using System.Net.Sockets;
44
using System.Text;
5+
using System.Threading.Tasks;
56
using Shouldly;
67
using Xunit;
78

@@ -28,7 +29,7 @@ public void UseDualModeOnInterNetworkV6()
2829
[Theory]
2930
[InlineData("127.0.0.1", AddressFamily.InterNetwork)]
3031
[InlineData("::1", AddressFamily.InterNetworkV6)]
31-
public async void SendPayload(string address, AddressFamily family)
32+
public async Task SendPayload(string address, AddressFamily family)
3233
{
3334
// Arrange
3435
client = UdpClientFactory.Create(0, family, false);

0 commit comments

Comments
 (0)