Module: wine Branch: master Commit: 0e5c2f346d5ac1becb0a33f91d06cc3d36295af5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0e5c2f346d5ac1becb0a33f91d...
Author: André Hentschel nerv@dawncrow.de Date: Mon Dec 20 01:48:13 2010 +0100
msi/tests: Remove superfluous check.
---
dlls/msi/tests/action.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/tests/action.c b/dlls/msi/tests/action.c index 0032222..1db7845 100644 --- a/dlls/msi/tests/action.c +++ b/dlls/msi/tests/action.c @@ -3420,7 +3420,7 @@ static void test_publish(void) ok(r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r); ok(state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
- if (is_64bit && !is_wow64) + if (is_64bit) { res = RegOpenKeyExA(uninstall_32node, prodcode, 0, KEY_ALL_ACCESS, &prodkey); ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);