Fix silly error in tests

This commit is contained in:
Michael Hansen 2021-06-16 18:10:51 -04:00 committed by Eren Gölge
parent 3f172b84d8
commit a41f53fe72
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class TextProcessingTextCase(unittest.TestCase):
def test_text2phone(self):
"""Verify phones directly (with |)"""
ph = text2phone(EXAMPLE_TEXT, LANG)
ph = text2phone(EXAMPLE_TEXT, LANG, use_espeak_phonemes=True)
self.assertEqual(ph, EXPECTED_PHONEMES)