From 5792307c61c64aadaea0c6ed527fce393863e578 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 26 Jul 2023 11:43:07 +0200 Subject: [PATCH] windows.media.speech/tests: Fix the spelling of some speech ok() messages. --- dlls/windows.media.speech/tests/speech.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/windows.media.speech/tests/speech.c b/dlls/windows.media.speech/tests/speech.c index 74336b802e5..49a4915332a 100644 --- a/dlls/windows.media.speech/tests/speech.c +++ b/dlls/windows.media.speech/tests/speech.c @@ -1213,7 +1213,7 @@ static void test_SpeechRecognizer(void) completed_event_handler_create_static(&completed_handler); hr = ISpeechContinuousRecognitionSession_add_Completed(session, &completed_handler.IHandler_RecognitionCompleted_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value); hr = ISpeechContinuousRecognitionSession_remove_Completed(session, token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr); @@ -1225,7 +1225,7 @@ static void test_SpeechRecognizer(void) recognition_result_handler_create_static(&result_handler); hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, &result_handler.IHandler_RecognitionResult_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value); hr = ISpeechContinuousRecognitionSession_remove_ResultGenerated(session, token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr); @@ -1708,7 +1708,7 @@ static void test_Recognition(void) recognition_result_handler_create_static(&result_handler); hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, &result_handler.IHandler_RecognitionResult_iface, &token); ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr); - ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value); + ok(token.value != 0xdeadbeef, "Got unexpected token: %#I64x.\n", token.value); recog_state = 0xdeadbeef; hr = ISpeechRecognizer2_get_State(recognizer2, &recog_state);