From 6a70aabe7b3c20f5910c6fed68bcb55f23b3d602 Mon Sep 17 00:00:00 2001 From: zhongyuan Date: Wed, 3 Jul 2019 17:39:34 +0800 Subject: [PATCH] [common][speech][fix 2 tc issue] Change-Id: Ib2148419f436c2d988a8466a4aee517b6be7c987 --- .../SpeechRecognitionAlternative_confidence_attribute.html | 2 +- .../SpeechRecognitionAlternative_transcript_attribute.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_confidence_attribute.html b/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_confidence_attribute.html index 0ac3f5f9d..2c0f5eb10 100755 --- a/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_confidence_attribute.html +++ b/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_confidence_attribute.html @@ -68,7 +68,7 @@ recognition.onresult = function(event) { recognition.onerror = function (event) { testResult = event.error + ": " + event.message; - result_span.innerHTML = testResult; + final_span.innerHTML = testResult; } function start() { diff --git a/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_transcript_attribute.html b/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_transcript_attribute.html index bffb5b103..656c31d68 100755 --- a/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_transcript_attribute.html +++ b/common/tct-speech-w3c-tests/speech/SpeechRecognitionAlternative_transcript_attribute.html @@ -68,7 +68,7 @@ recognition.onresult = function(event) { recognition.onerror = function (event) { testResult = event.error + ": " + event.message; - result_span.innerHTML = testResult; + final_span.innerHTML = testResult; } function start() { -- 2.34.1