You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/DurableEndToEndTests.cs
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,11 @@ public async Task DurableExecutionReplaysCurrentUtcDateTime()
152
152
153
153
if(!Directory.Exists(lastFolderName))
154
154
{
155
-
Assert.True(false,$"The directory {lastFolderName} does not exist!");
155
+
Assert.True(false,$@"The directory {lastFolderName} does not exist!
156
+
The system's value for TMP is {System.Environment.GetEnvironmentVariable("TMP",EnvironmentVariableTarget.Machine)}.
157
+
The user's value for TMP is {System.Environment.GetEnvironmentVariable("TMP")}.
158
+
The system's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP",EnvironmentVariableTarget.Machine)}.
159
+
The user's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP")}");
0 commit comments