Hugh McMaster : reg/tests: Fix two copy/paste errors.

Alexandre Julliard julliard at winehq.org
Sun Aug 20 00:02:28 CDT 2017


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

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Fri Aug 18 09:31:39 2017 +0000

reg/tests: Fix two copy/paste errors.

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

---

 programs/reg/tests/reg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/reg/tests/reg.c b/programs/reg/tests/reg.c
index 7863688..b042614 100644
--- a/programs/reg/tests/reg.c
+++ b/programs/reg/tests/reg.c
@@ -3085,14 +3085,14 @@ static void test_unicode_import(void)
                      "[HKEY_CURRENT_USER\\" KEY_BASE "\\Subkey1c ]\n", &r);
     ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
     verify_key(hkey, "Subkey1c ");
-    todo_wine err = RegDeleteKeyA(hkey, "Subkey1c ");
+    err = RegDeleteKeyA(hkey, "Subkey1c ");
     ok(err == ERROR_SUCCESS, "got %d, expected 0\n", err);
 
     test_import_wstr("\xef\xbb\xbfWindows Registry Editor Version 5.00\n\n"
                      "[HKEY_CURRENT_USER\\" KEY_BASE "\\Subkey1d\t]\n", &r);
     ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
     verify_key(hkey, "Subkey1d\t");
-    todo_wine err = RegDeleteKeyA(hkey, "Subkey1d\t");
+    err = RegDeleteKeyA(hkey, "Subkey1d\t");
     ok(err == ERROR_SUCCESS, "got %d, expected 0\n", err);
 
     test_import_wstr("\xef\xbb\xbfWindows Registry Editor Version 5.00\n\n"




More information about the wine-cvs mailing list