Skip to content

Commit d9ddc39

Browse files
authored
Merge pull request #427 from serilog/xunit
Update xunit to 2.9.0
2 parents a502598 + 80b30e1 commit d9ddc39

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/Serilog.Settings.Configuration.Tests/ConfigurationSettingsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void PropertyEnrichmentIsApplied()
6060
[Theory]
6161
[InlineData(null)]
6262
[InlineData("")]
63-
public void CanReadWithoutSerilogSection(string sectionName)
63+
public void CanReadWithoutSerilogSection(string? sectionName)
6464
{
6565
LogEvent? evt = null;
6666

test/Serilog.Settings.Configuration.Tests/Serilog.Settings.Configuration.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net48</TargetFrameworks>
@@ -25,7 +25,7 @@
2525
<PackageReference Include="NuGet.Frameworks" Version="6.7.0" />
2626
<PackageReference Include="Polly" Version="8.2.0" />
2727
<PackageReference Include="Serilog.Expressions" Version="4.0.0" />
28-
<PackageReference Include="xunit" Version="2.5.3" />
28+
<PackageReference Include="xunit" Version="2.9.0" />
2929
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
3030
<PackageReference Include="Shouldly" Version="4.2.1" />
3131
<PackageReference Include="PublicApiGenerator" Version="11.0.0" />

test/Serilog.Settings.Configuration.Tests/StringArgumentValueTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void StringValuesConvertToDefaultInstancesIfTargetIsAbstractClass()
5454
// a full-qualified type name should not be considered a static member accessor
5555
[InlineData("My.NameSpace.Class, MyAssembly, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
5656
null, null)]
57-
public void TryParseStaticMemberAccessorReturnsExpectedResults(string input, string? expectedAccessorType, string expectedPropertyName)
57+
public void TryParseStaticMemberAccessorReturnsExpectedResults(string? input, string? expectedAccessorType, string? expectedPropertyName)
5858
{
5959
var actual = StringArgumentValue.TryParseStaticMemberAccessor(input,
6060
out var actualAccessorType,

0 commit comments

Comments
 (0)