msi/tests: Spelling fixes for some action and package ok() messages.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d9c446050a
commit
50ab36ac97
|
@ -5886,7 +5886,7 @@ static void test_publish_components(void)
|
||||||
size = 0;
|
size = 0;
|
||||||
r = MsiProvideQualifiedComponentA("{92AFCBC0-9CA6-4270-8454-47C5EE2B8FAA}",
|
r = MsiProvideQualifiedComponentA("{92AFCBC0-9CA6-4270-8454-47C5EE2B8FAA}",
|
||||||
"english.txt", INSTALLMODE_DEFAULT, NULL, &size);
|
"english.txt", INSTALLMODE_DEFAULT, NULL, &size);
|
||||||
ok(r == ERROR_SUCCESS, "MsiProvideQualifiedCompontent returned %d\n", r);
|
ok(r == ERROR_SUCCESS, "MsiProvideQualifiedComponent returned %d\n", r);
|
||||||
|
|
||||||
res = RegOpenKeyA(HKEY_CURRENT_USER, keypath, &key);
|
res = RegOpenKeyA(HKEY_CURRENT_USER, keypath, &key);
|
||||||
ok(res == ERROR_SUCCESS, "components key not created %d\n", res);
|
ok(res == ERROR_SUCCESS, "components key not created %d\n", res);
|
||||||
|
@ -5912,7 +5912,7 @@ static void test_publish_components(void)
|
||||||
size = 0;
|
size = 0;
|
||||||
r = MsiProvideQualifiedComponentA("{92AFCBC0-9CA6-4270-8454-47C5EE2B8FAA}",
|
r = MsiProvideQualifiedComponentA("{92AFCBC0-9CA6-4270-8454-47C5EE2B8FAA}",
|
||||||
"english.txt", INSTALLMODE_DEFAULT, NULL, &size);
|
"english.txt", INSTALLMODE_DEFAULT, NULL, &size);
|
||||||
ok(r == ERROR_SUCCESS, "MsiProvideQualifiedCompontent returned %d\n", r);
|
ok(r == ERROR_SUCCESS, "MsiProvideQualifiedComponent returned %d\n", r);
|
||||||
|
|
||||||
if (pRegDeleteKeyExA)
|
if (pRegDeleteKeyExA)
|
||||||
res = pRegDeleteKeyExA(HKEY_LOCAL_MACHINE, keypath2, KEY_WOW64_64KEY, 0);
|
res = pRegDeleteKeyExA(HKEY_LOCAL_MACHINE, keypath2, KEY_WOW64_64KEY, 0);
|
||||||
|
|
|
@ -2482,7 +2482,7 @@ static void test_msipackage(void)
|
||||||
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_CREATE, &hdb);
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_CREATE, &hdb);
|
||||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
||||||
|
|
||||||
/* database exists, but is emtpy */
|
/* database exists, but is empty */
|
||||||
sprintf(name, "#%d", hdb);
|
sprintf(name, "#%d", hdb);
|
||||||
r = MsiOpenPackageA(name, &hpack);
|
r = MsiOpenPackageA(name, &hpack);
|
||||||
ok(r == ERROR_INSTALL_PACKAGE_INVALID,
|
ok(r == ERROR_INSTALL_PACKAGE_INVALID,
|
||||||
|
|
Loading…
Reference in New Issue