Skip to content

Commit 2572678

Browse files
authored
Fix CI (#563)
1 parent 27e4c7c commit 2572678

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: SharpPcap/SharpPcap.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SPDX-License-Identifier: MIT
2828
<Deterministic>true</Deterministic>
2929
<Nullable>enable</Nullable>
3030
<WarningsAsErrors>Nullable</WarningsAsErrors>
31-
<LangVersion>13.0</LangVersion>
31+
<LangVersion>12.0</LangVersion>
3232
</PropertyGroup>
3333
<PropertyGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' ">
3434
<IsTrimmable>true</IsTrimmable>

Diff for: Test/WinpkFilter/WinpkFilterDeviceTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void Properties()
7070
{
7171
Assert.That(device.Name, Is.Not.Null);
7272
Assert.That(device.FriendlyName, Is.Not.Null);
73-
Assert.That(device.Description, Is.Null);
73+
Assert.That(device.Description, Is.Empty);
7474
Assert.That(device.LastError, Is.Null);
7575
Assert.That(device.Filter, Is.Null);
7676
Assert.That(device.LinkType, Is.EqualTo(LinkLayers.Ethernet));

0 commit comments

Comments
 (0)