Detlef Riekenberg : msi/tests: Fix a typo.

Alexandre Julliard julliard at winehq.org
Mon Feb 14 10:02:05 CST 2011


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

Author: Detlef Riekenberg <wine.dev at web.de>
Date:   Fri Feb 11 17:34:50 2011 +0100

msi/tests: Fix a typo.

---

 dlls/msi/tests/package.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c
index f86e3d1..0830cf0 100644
--- a/dlls/msi/tests/package.c
+++ b/dlls/msi/tests/package.c
@@ -11956,7 +11956,7 @@ static void test_sourcedir(void)
     size = MAX_PATH;
     lstrcpyA(path, "kiwi");
     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
-    ok(r == ERROR_DIRECTORY, "Expected ERROR_SUCCESS, got %d\n", r);
+    ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
     ok(!lstrcmpA(path, "kiwi"), "Expected \"kiwi\", got \"%s\"\n", path);
     ok(size == MAX_PATH, "Expected %d, got %d\n", MAX_PATH, size);
 




More information about the wine-cvs mailing list