Skip to content

Commit

Permalink
Fix integration tests for DotNetWorkloadSearch
Browse files Browse the repository at this point in the history
  • Loading branch information
Marusyk authored and devlead committed Apr 3, 2022
1 parent c0e9140 commit 3d91bb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/Cake.Common/Tools/DotNet/DotNetAliases.cake
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ Task("Cake.Common.Tools.DotNet.DotNetAliases.DotNetWorkloadSearch")
// Then
foreach(var workload in workloads)
{
Assert.Contains(workload.Id, "maui");
Assert.Contains(workload.Description, ".NET MAUI SDK");
Assert.Contains("maui", workload.Id);
Assert.Contains(".NET MAUI SDK", workload.Description);
}
});

Expand Down

0 comments on commit 3d91bb0

Please sign in to comment.