i fucking hope multiple return values aren't good Go practices
createAudio send a mp3 file created with espeak
This commit is contained in:
@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user