menu-traversals #108

Closed
carlos wants to merge 72 commits from menu-traversals into master
Showing only changes of commit 0d18eec39f - Show all commits

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()