Module: wine Branch: master Commit: 24a01dfef8cafd358e8f5f7647515dbf75d73a8b URL: http://source.winehq.org/git/wine.git/?a=commit;h=24a01dfef8cafd358e8f5f7647...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed May 16 10:38:59 2012 +0200
shlwapi/tests: Remove useless ok() call on the "out" variable.
---
dlls/shlwapi/tests/ordinal.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/dlls/shlwapi/tests/ordinal.c b/dlls/shlwapi/tests/ordinal.c index 5d2fa0a..e787daa 100644 --- a/dlls/shlwapi/tests/ordinal.c +++ b/dlls/shlwapi/tests/ordinal.c @@ -1538,7 +1538,6 @@ static void test_SHPropertyBag_ReadLONG(void) ok(out == 0xfeedface, "value should not have changed\n"); rc = pSHPropertyBag_ReadLONG(&pb->IPropertyBag_iface, szName1, NULL); ok(rc == E_INVALIDARG || broken(rc == 0) || broken(rc == 1), "incorrect return %x\n",rc); - ok(out == 0xfeedface, "value should not have changed\n"); rc = pSHPropertyBag_ReadLONG(&pb->IPropertyBag_iface, szName1, &out); ok(rc == DISP_E_BADVARTYPE || broken(rc == 0) || broken(rc == 1), "incorrect return %x\n",rc); ok(out == 0xfeedface || broken(out == 0xfeedfa00), "value should not have changed %x\n",out);