1
0

i fucking hope multiple return values aren't good Go practices

createAudio send a mp3 file created with espeak
This commit is contained in:
2020-12-06 12:04:40 +01:00
parent 03d23a5666
commit cb5995640a
2 changed files with 10 additions and 7 deletions

View File

@ -6,7 +6,7 @@ import (
func TestCreateAudioSimple(t *testing.T) {
var message string = "test 1 2 3"
_, err := createAudio(message)
_, err, _ := createAudio(message)
if err != nil {
t.Fail()
}