We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2abd8f commit 24fdfbbCopy full SHA for 24fdfbb
python/tests/test_functions.py
@@ -26,6 +26,7 @@ def setUpClass(cls):
26
cls.mock_get_audio_duration = patch("python.word_generator.Audio.get_audio_duration").start()
27
cls.mock_generate_srt_file = patch("python.word_generator.Audio.echogarden_generate_subtitles").start()
28
29
+ cls.mock_tts.return_value = ("local_path", "cloud_path")
30
cls.mock_google_translator.return_value.translate.return_value = "Translated sentence"
31
cls.audio = Audio(
32
word_list_path="python/tests/test_word_list.txt",
0 commit comments