Alexandre Julliard : mmdevapi/tests: Remove some todos that succeed now.

Alexandre Julliard julliard at winehq.org
Tue Apr 6 11:20:09 CDT 2010


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Apr  6 14:26:23 2010 +0200

mmdevapi/tests: Remove some todos that succeed now.

---

 dlls/mmdevapi/tests/propstore.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/mmdevapi/tests/propstore.c b/dlls/mmdevapi/tests/propstore.c
index 328cdbb..bb9ff16 100644
--- a/dlls/mmdevapi/tests/propstore.c
+++ b/dlls/mmdevapi/tests/propstore.c
@@ -74,7 +74,7 @@ START_TEST(propstore)
     }
     store = NULL;
     hr = IMMDevice_OpenPropertyStore(dev, 3, &store);
-    todo_wine ok(hr == E_INVALIDARG, "Wrong hr returned: %08x\n", hr);
+    ok(hr == E_INVALIDARG, "Wrong hr returned: %08x\n", hr);
     if (hr != S_OK)
         /* It seems on windows returning with E_INVALIDARG doesn't
          * set store to NULL, so just don't set store to non-null
@@ -84,11 +84,11 @@ START_TEST(propstore)
     else if (store)
         IPropertyStore_Release(store);
     hr = IMMDevice_OpenPropertyStore(dev, STGM_READ, NULL);
-    todo_wine ok(hr == E_POINTER, "Wrong hr returned: %08x\n", hr);
+    ok(hr == E_POINTER, "Wrong hr returned: %08x\n", hr);
 
     store = NULL;
     hr = IMMDevice_OpenPropertyStore(dev, STGM_READ, &store);
-    todo_wine ok(hr == S_OK, "Opening valid store returned %08x\n", hr);
+    ok(hr == S_OK, "Opening valid store returned %08x\n", hr);
     if (store)
     {
         test_propertystore(store);




More information about the wine-cvs mailing list