Skip to content

Commit

Permalink
Update InteropTests.cs (#334)
Browse files Browse the repository at this point in the history
* Update InteropTests.cs

Fixed unit test to work with latest version of MessagePack

* Updated MessagePack to version 2.5.187
  • Loading branch information
chitsaw authored Nov 8, 2024
1 parent 79f872d commit 0d718c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<ItemGroup>
<PackageReference Include="CsvHelper" Version="15.0.0" />
<PackageReference Include="MessagePack" Version="2.1.90" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Runtime/Test.Psi/InteropTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void MessagePackFormatSerializerTest()
this.AssertBinarySerialization(true, msg, msg);
this.AssertBinarySerialization(2.71828, msg, msg);
this.AssertBinarySerialization("Howdy", msg, msg);
this.AssertBinarySerialization(new[] { 1, 2, 3 }, msg, msg);
this.AssertBinarySerialization(new object[] { 1, 2, 3 }, msg, msg);

var structured = new
{
Expand Down

0 comments on commit 0d718c7

Please sign in to comment.