Maarten Lankhorst : quartz: Fix error message names in tests.

Alexandre Julliard julliard at winehq.org
Wed Apr 23 07:59:37 CDT 2008


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

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Sat Apr 19 15:33:56 2008 -0700

quartz: Fix error message names in tests.

---

 dlls/quartz/tests/filtergraph.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c
index 98be4b5..f1728f7 100644
--- a/dlls/quartz/tests/filtergraph.c
+++ b/dlls/quartz/tests/filtergraph.c
@@ -79,22 +79,22 @@ static void rungraph(void)
     Sleep(10);
     trace("stop -> pause\n");
     hr = IMediaControl_Pause(pmc);
-    ok(hr==S_OK || hr == S_FALSE, "Cannot start the graph returned: %x\n", hr);
+    ok(hr==S_OK || hr == S_FALSE, "Cannot pause the graph returned: %x\n", hr);
 
     Sleep(10);
     trace("pause -> run\n");
     hr = IMediaControl_Run(pmc);
-    ok(hr==S_OK || hr == S_FALSE, "Cannot pause the graph returned: %x\n", hr);
+    ok(hr==S_OK || hr == S_FALSE, "Cannot start the graph returned: %x\n", hr);
 
     Sleep(10);
     trace("run -> pause\n");
     hr = IMediaControl_Pause(pmc);
-    ok(hr==S_OK || hr == S_FALSE, "Cannot start the graph returned: %x\n", hr);
+    ok(hr==S_OK || hr == S_FALSE, "Cannot pause the graph returned: %x\n", hr);
 
     Sleep(10);
     trace("pause -> stop\n");
     hr = IMediaControl_Stop(pmc);
-    ok(hr==S_OK || hr == S_FALSE, "Cannot start the graph returned: %x\n", hr);
+    ok(hr==S_OK || hr == S_FALSE, "Cannot stop the graph returned: %x\n", hr);
 
     Sleep(10);
     trace("pause -> run\n");
@@ -103,7 +103,7 @@ static void rungraph(void)
 
     trace("run -> stop\n");
     hr = IMediaControl_Stop(pmc);
-    ok(hr==S_OK || hr == S_FALSE, "Cannot start the graph returned: %x\n", hr);
+    ok(hr==S_OK || hr == S_FALSE, "Cannot stop the graph returned: %x\n", hr);
 
     trace("stop -> run\n");
     hr = IMediaControl_Run(pmc);




More information about the wine-cvs mailing list