File tree 1 file changed +0
-8
lines changed
translation/samples/snippets/hybrid_glossaries
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import filecmp
16
15
import os
17
16
import sys
18
17
@@ -97,7 +96,6 @@ def test_translate_glossary():
97
96
98
97
def test_tts_standard (capsys ):
99
98
outfile = 'resources/test_standard_text.mp3'
100
- expected_outfile = 'resources/expected_standard_text.mp3'
101
99
textfile = 'resources/standard_format.txt'
102
100
103
101
with open (textfile , 'r' ) as f :
@@ -107,12 +105,6 @@ def test_tts_standard(capsys):
107
105
108
106
# Assert audio file generated
109
107
assert os .path .isfile (outfile )
110
-
111
- # Assert audio file generated correctly
112
- assert filecmp .cmp (outfile ,
113
- expected_outfile ,
114
- shallow = True )
115
-
116
108
out , err = capsys .readouterr ()
117
109
118
110
# Assert success message printed
You can’t perform that action at this time.
0 commit comments