We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e37e3a commit 2d286a3Copy full SHA for 2d286a3
e2e-tests/cmd_test.py
@@ -93,15 +93,9 @@ def _assert_update_action(self, directory):
93
utterances = self._get_utterances(directory)
94
text_array = [entry["translated_text"] for entry in utterances]
95
96
- if operating == "darwin":
97
- assert (
98
- "I m'encanta aquesta ciutat tant meva." == text_array[3]
99
- ), "updated translated text 2"
100
-
101
- else:
102
103
- "I m'encanta aquesta ciutat tant meva." == text_array[2]
104
+ assert (
+ "I m'encanta aquesta ciutat tant meva." == text_array[2]
+ ), "updated translated text 2"
105
106
@pytest.mark.parametrize("tts_engine", ["edge", "mms"])
107
def test_translations_with_tts(self, tts_engine):
0 commit comments