aboutsummaryrefslogtreecommitdiff
path: root/src/test/DUtilUnitTest/DirUtilTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/DUtilUnitTest/DirUtilTests.cpp')
-rw-r--r--src/test/DUtilUnitTest/DirUtilTests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/DUtilUnitTest/DirUtilTests.cpp b/src/test/DUtilUnitTest/DirUtilTests.cpp
index a965c3d5..7643366f 100644
--- a/src/test/DUtilUnitTest/DirUtilTests.cpp
+++ b/src/test/DUtilUnitTest/DirUtilTests.cpp
@@ -4,7 +4,7 @@
4 4
5using namespace System; 5using namespace System;
6using namespace Xunit; 6using namespace Xunit;
7using namespace WixTest; 7using namespace WixBuildTools::TestSupport;
8 8
9namespace DutilTests 9namespace DutilTests
10{ 10{
@@ -32,7 +32,7 @@ namespace DutilTests
32 NativeAssert::Succeeded(hr, "Failed to combine current directory: '{0}' with Guid: '{1}'", sczCurrentDir, sczGuid); 32 NativeAssert::Succeeded(hr, "Failed to combine current directory: '{0}' with Guid: '{1}'", sczCurrentDir, sczGuid);
33 33
34 BOOL fExists = DirExists(sczFolder, NULL); 34 BOOL fExists = DirExists(sczFolder, NULL);
35 Assert::False(fExists); 35 Assert::False(fExists == TRUE);
36 36
37 hr = PathConcat(sczFolder, L"foo", &sczSubFolder); 37 hr = PathConcat(sczFolder, L"foo", &sczSubFolder);
38 NativeAssert::Succeeded(hr, "Failed to combine folder: '%ls' with subfolder: 'foo'", sczFolder); 38 NativeAssert::Succeeded(hr, "Failed to combine folder: '%ls' with subfolder: 'foo'", sczFolder);