Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Marusyk committed Nov 7, 2024
1 parent 8c14ede commit bbb6eb4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/integration/Cake.Common/Tools/DotNet/DotNetAliases.cake
Original file line number Diff line number Diff line change
Expand Up @@ -442,10 +442,9 @@ Task("Cake.Common.Tools.DotNet.DotNetAliases.DotNetSlnAdd")
.Does(() =>
{
// Given
var solutionPath = Paths.Temp.Combine("./Cake.Common/Tools/DotNet");
var solution = solutionPath.CombineWithFilePath("hwapp.sln");
var projectPath = Paths.Temp.Combine("./Cake.Common/Solution/Project");
var project = projectPath.CombineWithFilePath("Project.csproj");
var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNet");
var solution = path.CombineWithFilePath("hwapp.sln");
var project = path.CombineWithFilePath("hwapp/hwapp.csproj");

// When
DotNetSlnAdd(solution.FullPath, new[] { (FilePath)project.FullPath});
Expand Down

0 comments on commit bbb6eb4

Please sign in to comment.