Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dmxc committed May 19, 2024
1 parent b87fd5e commit 763859d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ArtNetTests/ArtNetTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.1.0">
<PackageReference Include="NUnit.Analyzers" Version="4.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion ArtNetTests/PackagesSerializeDeserialize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ public async Task AbstractArtPacketCore()
Assert.That(((IDisposableExtended)mock).IsDisposed, Is.False);
Assert.That(((IDisposableExtended)mock).IsDisposing, Is.True);
Assert.Throws(typeof(ObjectDisposedException), () => { mock.GetPacket(); });
Assert.DoesNotThrowAsync(async () => { ((IDisposable)mock).Dispose(); });
Assert.DoesNotThrow(() => { ((IDisposable)mock).Dispose(); });
Assert.That(((IDisposableExtended)mock).IsDisposed, Is.False);
Assert.That(((IDisposableExtended)mock).IsDisposing, Is.True);
mock.EndDispose();
Expand Down

0 comments on commit 763859d

Please sign in to comment.