Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,11 @@ public async Task DurableExecutionReplaysCurrentUtcDateTime()

if (!Directory.Exists(lastFolderName))
{
Assert.True(false, $"The directory {lastFolderName} does not exist!");
Assert.True(false, $@"The directory {lastFolderName} does not exist!
The system's value for TMP is {System.Environment.GetEnvironmentVariable("TMP", EnvironmentVariableTarget.Machine)}.
The user's value for TMP is {System.Environment.GetEnvironmentVariable("TMP")}.
The system's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP", EnvironmentVariableTarget.Machine)}.
The user's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP")}");
}

string[] lines = System.IO.File.ReadAllLines(path);
Expand Down Expand Up @@ -240,7 +244,11 @@ private async Task DurableTimerClientStopsOrchestratorAndUpdatesCurrentUtcDateTi

if (!Directory.Exists(lastFolderName))
{
Assert.True(false, $"The directory {lastFolderName} does not exist!");
Assert.True(false, $@"The directory {lastFolderName} does not exist!
The system's value for TMP is {System.Environment.GetEnvironmentVariable("TMP", EnvironmentVariableTarget.Machine)}.
The user's value for TMP is {System.Environment.GetEnvironmentVariable("TMP")}.
The system's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP", EnvironmentVariableTarget.Machine)}.
The user's value for TEMP is {System.Environment.GetEnvironmentVariable("TEMP")}");
}

string[] lines = System.IO.File.ReadAllLines(path);
Expand Down