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 @@ -471,7 +471,8 @@ public void TestCache2()

try
{
string problematicTmpPath = @"C:\Users\}\blabla\temp";
// Check if } do not cause it to crash due to usage of String.Format or such on code path
string problematicTmpPath = Path.Combine(originalTmp, "}", "blabla", "temp");
Environment.SetEnvironmentVariable("TMP", problematicTmpPath);
Environment.SetEnvironmentVariable("TEMP", problematicTmpPath);

Expand Down