From 6353e871660efbd1c419f797dabbdd6334ddef60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 27 Apr 2021 15:04:20 +0200 Subject: [PATCH] fix test --- tests/test_synthesize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_synthesize.py b/tests/test_synthesize.py index 3626f0df..526f7dc8 100644 --- a/tests/test_synthesize.py +++ b/tests/test_synthesize.py @@ -11,7 +11,7 @@ def test_synthesize(): # single speaker model run_cli(f'tts --text "This is an example." --out_path "{output_path}"') run_cli( - "tts --model_name tts_models/en/ljspeech/speedy-speech-wn" + "tts --model_name tts_models/en/ljspeech/speedy-speech-wn " f'--text "This is an example." --out_path "{output_path}"' ) run_cli( @@ -23,6 +23,6 @@ def test_synthesize(): # multi-speaker model run_cli("tts --model_name tts_models/en/vctk/sc-glow-tts --list_speaker_idxs") run_cli( - f'tts --model_name tts_models/en/vctk/sc-glow-tts --speaker_idx "p304"' + f'tts --model_name tts_models/en/vctk/sc-glow-tts --speaker_idx "p304" ' f'--text "This is an example." --out_path "{output_path}"' )