summaryrefslogtreecommitdiff
path: root/src/burn/test/BurnUnitTest/RegistrationTest.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-02-28 18:41:14 -0600
committerSean Hall <r.sean.hall@gmail.com>2022-03-01 11:37:00 -0600
commit3f658fa2b4bd80619fcf89e1e87ae12b48effb7a (patch)
treee10e352d4e5197f6dba708f098a7588ef55b78f4 /src/burn/test/BurnUnitTest/RegistrationTest.cpp
parent7e61f48f6be0849cb0c0da796ec77603c14532e5 (diff)
downloadwix-3f658fa2b4bd80619fcf89e1e87ae12b48effb7a.tar.gz
wix-3f658fa2b4bd80619fcf89e1e87ae12b48effb7a.tar.bz2
wix-3f658fa2b4bd80619fcf89e1e87ae12b48effb7a.zip
Fix and run Burn 64-bit unit tests.
Diffstat (limited to 'src/burn/test/BurnUnitTest/RegistrationTest.cpp')
-rw-r--r--src/burn/test/BurnUnitTest/RegistrationTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/burn/test/BurnUnitTest/RegistrationTest.cpp b/src/burn/test/BurnUnitTest/RegistrationTest.cpp
index f3645893..6a10961d 100644
--- a/src/burn/test/BurnUnitTest/RegistrationTest.cpp
+++ b/src/burn/test/BurnUnitTest/RegistrationTest.cpp
@@ -37,8 +37,8 @@ namespace Bootstrapper
37 { 37 {
38 this->testRegistry = registryFixture; 38 this->testRegistry = registryFixture;
39 39
40 this->testRunKeyPath = this->testRegistry->GetDirectHkcuPath(gcnew String(REGISTRY_RUN_KEY)); 40 this->testRunKeyPath = this->testRegistry->GetDirectHkcuPath(REG_KEY_DEFAULT, gcnew String(REGISTRY_RUN_KEY));
41 this->testUninstallKeyPath = this->testRegistry->GetDirectHkcuPath(gcnew String(REGISTRY_UNINSTALL_KEY), gcnew String(TEST_BUNDLE_ID)); 41 this->testUninstallKeyPath = this->testRegistry->GetDirectHkcuPath(REG_KEY_DEFAULT, gcnew String(REGISTRY_UNINSTALL_KEY), gcnew String(TEST_BUNDLE_ID));
42 this->testVariableKeyPath = Path::Combine(this->testUninstallKeyPath, gcnew String(L"variables")); 42 this->testVariableKeyPath = Path::Combine(this->testUninstallKeyPath, gcnew String(L"variables"));
43 } 43 }
44 44