diff options
Diffstat (limited to 'src/test/DUtilUnitTest/DirUtilTests.cpp')
-rw-r--r-- | src/test/DUtilUnitTest/DirUtilTests.cpp | 4 |
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 | ||
5 | using namespace System; | 5 | using namespace System; |
6 | using namespace Xunit; | 6 | using namespace Xunit; |
7 | using namespace WixTest; | 7 | using namespace WixBuildTools::TestSupport; |
8 | 8 | ||
9 | namespace DutilTests | 9 | namespace 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); |