Skip to content

Commit eef3482

Browse files
committed
fix failing unit test
1 parent ce23b06 commit eef3482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Aspire.Hosting.AWS.UnitTests/ProjectUtilitiesTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void UpdateLaunchSettings_CreatesNewLaunchSettingsFile_WhenNoneExists()
9090
string commandLineArgs = profile["commandLineArgs"]?.GetValue<string>() ?? "";
9191
string expectedRuntimePath = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
9292
? runtimeSupportAssemblyPath.Replace(userProfile, "%USERPROFILE%")
93-
: runtimeSupportAssemblyPath.Replace(userProfile, "$HOME");
93+
: runtimeSupportAssemblyPath.Replace(userProfile, "$(HOME)");
9494

9595
Assert.Contains(expectedRuntimePath, commandLineArgs);
9696
Assert.Contains(functionHandler, commandLineArgs);

0 commit comments

Comments
 (0)