From 38fe36a2072b1abde87b52643e43a3d7ddf2a2f5 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 23 Mar 2023 14:36:09 -0700 Subject: Always add space to to test folder to flush out such bugs --- src/internal/WixInternal.TestSupport/DisposableFileSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/internal/WixInternal.TestSupport/DisposableFileSystem.cs') 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 public string GetFolder(bool create = false) { - var path = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()); + // Always return a path with a space in it. + var path = Path.Combine(Path.GetTempPath(), ".WIXTEST " + Path.GetRandomFileName()); if (create) { -- cgit v1.2.3-55-g6feb