Skip to content

Commit

Permalink
Fix to tests and upgrade to ids
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Apr 17, 2024
1 parent cef4d09 commit 2adb096
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/RepoGovernance.Core/RepoGovernance.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.8.3" />
<PackageReference Include="Azure.Identity" Version="1.10.4" />
<PackageReference Include="Azure.Identity" Version="1.11.1" />
<PackageReference Include="DotNetCensus.Core" Version="1.8.6" />
<PackageReference Include="GitHubActionsDotNet" Version="1.3.19" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Graph" Version="5.47.0" />
<PackageReference Include="Microsoft.Graph" Version="5.48.0" />
<PackageReference Include="RepoAutomation.Core" Version="1.6.3" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/RepoGovernance.Tests/SummaryItemsControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,9 @@ public async Task GetSummaryItemsTest()
if (item5 != null)
{
Assert.IsTrue(item5.DotNetFrameworks.Count >= 4);
Assert.AreEqual(".NET 6.0", item5.DotNetFrameworks[0].Name);
Assert.AreEqual(".NET 8.0", item5.DotNetFrameworks[0].Name);
Assert.AreEqual("bg-primary", item5.DotNetFrameworks[0].Color);
Assert.AreEqual(".NET 6.0-windows", item5.DotNetFrameworks[1].Name);
Assert.AreEqual(".NET 8.0-windows7.0", item5.DotNetFrameworks[1].Name);
Assert.AreEqual("bg-primary", item5.DotNetFrameworks[1].Color);
Assert.AreEqual(".NET Framework 4.7.1", item5.DotNetFrameworks[2].Name);
Assert.AreEqual("bg-primary", item5.DotNetFrameworks[2].Color);
Expand Down

0 comments on commit 2adb096

Please sign in to comment.