fix tests

This commit is contained in:
Ali Abid 2021-10-12 21:01:12 +00:00
parent 14a3536d77
commit d49d5b1ff8

View File

@ -84,7 +84,7 @@ def audio_to_file(sample_rate, data, filename):
sample_width=data.dtype.itemsize,
channels=(1 if len(data.shape) == 1 else data.shape[1])
)
audio.export(filename)
audio.export(filename, format="wav")
##################
# OUTPUT