Module: wine Branch: master Commit: 03ff6ba6414a8bfe5d18213f063f6856538a158b URL: http://source.winehq.org/git/wine.git/?a=commit;h=03ff6ba6414a8bfe5d18213f06...
Author: Detlef Riekenberg wine.dev@web.de Date: Mon Mar 30 17:33:09 2009 +0200
msi/tests: Fix a copy & paste typo in a test message.
---
dlls/msi/tests/install.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 6dbcf31..768ece1 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -1779,7 +1779,7 @@ static void test_MsiInstallProduct(void) type = REG_SZ; res = RegQueryValueExA(hkey, "OrderTestName", NULL, &type, (LPBYTE)path, &size); ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res); - ok(!lstrcmpA(path, "OrderTestValue"), "Expected imaname, got %s\n", path); + ok(!lstrcmpA(path, "OrderTestValue"), "Expected OrderTestValue, got %s\n", path);
check_service_is_installed();