aboutsummaryrefslogtreecommitdiff
path: root/src/internal/WixInternal.TestSupport/DisposableFileSystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/WixInternal.TestSupport/DisposableFileSystem.cs')
-rw-r--r--src/internal/WixInternal.TestSupport/DisposableFileSystem.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/internal/WixInternal.TestSupport/DisposableFileSystem.cs b/src/internal/WixInternal.TestSupport/DisposableFileSystem.cs
index b03bbaa4..edf1f803 100644
--- a/src/internal/WixInternal.TestSupport/DisposableFileSystem.cs
+++ b/src/internal/WixInternal.TestSupport/DisposableFileSystem.cs
@@ -35,7 +35,8 @@ namespace WixInternal.TestSupport
35 35
36 public string GetFolder(bool create = false) 36 public string GetFolder(bool create = false)
37 { 37 {
38 var path = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()); 38 // Always return a path with a space in it.
39 var path = Path.Combine(Path.GetTempPath(), ".WIXTEST " + Path.GetRandomFileName());
39 40
40 if (create) 41 if (create)
41 { 42 {