Module: wine Branch: master Commit: 51604ad18669092faa1b24241e238898c7306785 URL: https://gitlab.winehq.org/wine/wine/-/commit/51604ad18669092faa1b24241e23889...
Author: Davide Beatrici git@davidebeatrici.dev Date: Sun Aug 21 09:20:22 2022 +0200
mmdevapi/tests: Fix fail message referencing "Start" instead of "Stop" in test_session().
---
dlls/mmdevapi/tests/render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mmdevapi/tests/render.c b/dlls/mmdevapi/tests/render.c index 0fc8aa5bc3e..ac714980c6f 100644 --- a/dlls/mmdevapi/tests/render.c +++ b/dlls/mmdevapi/tests/render.c @@ -1529,7 +1529,7 @@ static void test_session(void) }
hr = IAudioClient_Stop(ses1_ac1); - ok(hr == S_OK, "Start failed: %08lx\n", hr); + ok(hr == S_OK, "Stop failed: %08lx\n", hr);
hr = IAudioSessionControl2_GetState(ses1_ctl, &state); ok(hr == S_OK, "GetState failed: %08lx\n", hr);