Skip to content

Commit

Permalink
Make tests more robust cross-platform
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Mezach <[email protected]>
  • Loading branch information
jmezach committed Dec 17, 2024
1 parent cf10b12 commit 3106cb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void AddSqlPackage_WithExplicitRelativePath()
{
// Arrange
var appBuilder = DistributedApplication.CreateBuilder();
appBuilder.AddSqlPackage<TestPackage>("chinook").WithDacpac("tools/ErikEJ.Dacpac.Chinook2.dacpac");
appBuilder.AddSqlPackage<TestPackage>("chinook").WithDacpac(Path.Combine("tools", "ErikEJ.Dacpac.Chinook2.dacpac"));

// Act
using var app = appBuilder.Build();
Expand Down

0 comments on commit 3106cb5

Please sign in to comment.