use log.Fatal during setup procedures.

update readme example
This commit is contained in:
onyx-and-iris
2022-08-23 03:35:34 +01:00
parent 6fabc43998
commit 7a79555cb8
5 changed files with 14 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
package voicemeeter_test
import (
"fmt"
"log"
"os"
"testing"
"time"
@@ -15,8 +15,7 @@ var (
func TestMain(m *testing.M) {
if err != nil {
fmt.Println(err)
os.Exit(1)
log.Fatal(err)
}
defer vm.Logout()