From e579b13d8161a1b04b3fc6b7b3400a9b8e5f15b2 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Sat, 19 Apr 2008 15:33:56 -0700 Subject: [PATCH] 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); -- 1.5.4.1