msi/tests: Fix a typo.

This commit is contained in:
Detlef Riekenberg 2011-02-11 17:34:50 +01:00 committed by Alexandre Julliard
parent 14fc2eff44
commit 1c2183a85a
1 changed files with 1 additions and 1 deletions

View File

@ -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);