We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce23b06 commit eef3482Copy full SHA for eef3482
tests/Aspire.Hosting.AWS.UnitTests/ProjectUtilitiesTests.cs
@@ -90,7 +90,7 @@ public void UpdateLaunchSettings_CreatesNewLaunchSettingsFile_WhenNoneExists()
90
string commandLineArgs = profile["commandLineArgs"]?.GetValue<string>() ?? "";
91
string expectedRuntimePath = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
92
? runtimeSupportAssemblyPath.Replace(userProfile, "%USERPROFILE%")
93
- : runtimeSupportAssemblyPath.Replace(userProfile, "$HOME");
+ : runtimeSupportAssemblyPath.Replace(userProfile, "$(HOME)");
94
95
Assert.Contains(expectedRuntimePath, commandLineArgs);
96
Assert.Contains(functionHandler, commandLineArgs);
0 commit comments