Skip to content

Commit

Permalink
update tts integration test to not hard code customization
Browse files Browse the repository at this point in the history
  • Loading branch information
mediumTaj committed Apr 9, 2018
1 parent 2c0efe4 commit 30149e1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Scripts/UnitTests/TestTextToSpeech.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,8 @@ public override IEnumerator RunTest()

// Get Customization Words
Log.Debug("TestTextToSpeech.RunTest()", "Attempting to get a customization's words");
string customIdentifierToGetWords = "1476ea80-5355-4911-ac99-ba39162a2d34";
if (!_textToSpeech.GetCustomizationWords(OnGetCustomizationWords, OnFail, customIdentifierToGetWords))
Log.Debug("TestTextToSpeech.GetCustomizationWords()", "Failed to get {0} words!", customIdentifierToGetWords);
if (!_textToSpeech.GetCustomizationWords(OnGetCustomizationWords, OnFail, _createdCustomizationId))
Log.Debug("TestTextToSpeech.GetCustomizationWords()", "Failed to get {0} words!", _createdCustomizationId);
while (!_getCustomizationWordsTested)
yield return null;

Expand Down

0 comments on commit 30149e1

Please sign in to comment.