Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixes the test failures when hostpolicy is used at runtime.
  • Loading branch information
vitek-karas authored and github-actions committed Oct 7, 2021
commit ffd37342d3af143b490f6b0ef5ece3104d204264
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static string UseSingleFileSelfContainedHost(TestProjectFixture testFixtu
var publishedHostPath = BundleHelper.GetHostPath(testFixture);
HostWriter.CreateAppHost(singleFileHost,
publishedHostPath,
BundleHelper.GetAppPath(testFixture));
BundleHelper.GetAppName(testFixture));
return publishedHostPath;
}

Expand All @@ -37,7 +37,7 @@ public static string UseFrameworkDependentHost(TestProjectFixture testFixture)
var publishedHostPath = BundleHelper.GetHostPath(testFixture);
HostWriter.CreateAppHost(appHost,
publishedHostPath,
BundleHelper.GetAppPath(testFixture));
BundleHelper.GetAppName(testFixture));
return publishedHostPath;
}

Expand Down