remove debug message

This commit is contained in:
Carlosokumu 2024-10-07 16:55:07 +03:00
parent bb009fa1e2
commit 0d18eec39f
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -3,7 +3,6 @@ package main
import ( import (
"bytes" "bytes"
"context" "context"
"fmt"
"log" "log"
"math/rand" "math/rand"
"os" "os"
@ -49,8 +48,6 @@ func TestMain(m *testing.M) {
defer func() { defer func() {
if err := os.RemoveAll(testStore); err != nil { if err := os.RemoveAll(testStore); err != nil {
log.Fatalf("Failed to delete state store %s: %v", testStore, err) log.Fatalf("Failed to delete state store %s: %v", testStore, err)
} else {
fmt.Println("After running test")
} }
}() }()
m.Run() m.Run()