Skip to content

Commit

Permalink
chore: Update xunit package versions (#10228)
Browse files Browse the repository at this point in the history
chore: update xunit package versions
  • Loading branch information
filzrev authored Sep 30, 2024
1 parent 29f3ec3 commit 0383084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="PublicApiGenerator" Version="11.1.0" />
<PackageVersion Include="Verify.DiffPlex" Version="3.1.0" />
<PackageVersion Include="Verify.Xunit" Version="26.5.0" />
<PackageVersion Include="Verify.Xunit" Version="26.6.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="xunit" Version="2.9.0" />
<PackageVersion Include="xunit" Version="2.9.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void DuplicateOPathInMarkdownSectionTest()
}

var logs = _listener.Items;
Assert.Single(logs.Where(l => l.Code == WarningCodes.Overwrite.InvalidMarkdownFragments));
Assert.Single(logs, l => l.Code == WarningCodes.Overwrite.InvalidMarkdownFragments);
Assert.Single(contentsMetadata);
Assert.Equal("test2",
((ParagraphBlock)((MarkdownDocument)((Dictionary<object, object>)contentsMetadata["function"])["parameters"])[0]).Inline.FirstChild.ToString());
Expand Down

0 comments on commit 0383084

Please sign in to comment.