Module: wine Branch: master Commit: f0a5b139804bc1baf40fbf84a18c9751a0941598 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f0a5b139804bc1baf40fbf84a1...
Author: Francois Gouget fgouget@free.fr Date: Sat Jan 7 14:42:53 2017 +0100
msi/tests: A spelling fix in a variable name.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msi/tests/package.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index 748d25f..10ef84a 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -8294,7 +8294,7 @@ static void test_emptypackage(void) static void test_MsiGetProductProperty(void) { static const WCHAR prodcode_propW[] = {'P','r','o','d','u','c','t','C','o','d','e',0}; - static const WCHAR nonexistantW[] = {'I','D','o','n','t','E','x','i','s','t',0}; + static const WCHAR nonexistentW[] = {'I','D','o','n','t','E','x','i','s','t',0}; static const WCHAR newpropW[] = {'N','e','w','P','r','o','p','e','r','t','y',0}; static const WCHAR appleW[] = {'a','p','p','l','e',0}; static const WCHAR emptyW[] = {0}; @@ -8571,7 +8571,7 @@ static void test_MsiGetProductProperty(void)
size = MAX_PATH; lstrcpyW(valW, appleW); - r = MsiGetProductPropertyW(hprod, nonexistantW, valW, &size); + r = MsiGetProductPropertyW(hprod, nonexistentW, valW, &size); ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r); ok(!lstrcmpW(valW, emptyW), "Expected "", got %s\n", wine_dbgstr_w(valW)); ok(size == 0, "Expected 0, got %d\n", size);