Hugh McMaster : regedit/tests: Fix another incorrectly named registry key.

Alexandre Julliard julliard at winehq.org
Mon Jul 3 15:56:46 CDT 2017


Module: wine
Branch: master
Commit: 55d43d13e44e276618d8723df97e165d189ef053
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=55d43d13e44e276618d8723df97e165d189ef053

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Fri Jun 30 13:42:25 2017 +0000

regedit/tests: Fix another incorrectly named registry key.

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/regedit/tests/regedit.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/programs/regedit/tests/regedit.c b/programs/regedit/tests/regedit.c
index 4eaaeb3..71d0f14 100644
--- a/programs/regedit/tests/regedit.c
+++ b/programs/regedit/tests/regedit.c
@@ -488,12 +488,12 @@ static void test_basic_import(void)
 
     exec_import_str("REGEDIT4\n\n"
                     "[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
-                    "\"Wine62a\"=hex(7):4c,69,6e,65,20,\\");
-    lr = RegQueryValueExA(hkey, "Wine62a", NULL, NULL, NULL, NULL);
+                    "\"Wine17\"=hex(7):4c,69,6e,65,20,\\");
+    lr = RegQueryValueExA(hkey, "Wine17", NULL, NULL, NULL, NULL);
     todo_wine ok(lr == ERROR_SUCCESS || broken(lr == ERROR_FILE_NOT_FOUND) /* WinXP */,
                  "got %u, expected 0\n", lr);
     if (lr == ERROR_SUCCESS)
-        todo_wine verify_reg(hkey, "Wine62a", REG_MULTI_SZ, "Line ", 6, 0);
+        todo_wine verify_reg(hkey, "Wine17", REG_MULTI_SZ, "Line ", 6, 0);
 
     RegCloseKey(hkey);
 




More information about the wine-cvs mailing list