diff --git a/wal/follower_test.go b/wal/follower_test.go index bfa419a..c44e632 100644 --- a/wal/follower_test.go +++ b/wal/follower_test.go @@ -2,7 +2,6 @@ package wal import ( "errors" - "log" "os" "testing" "time" @@ -34,7 +33,6 @@ func TestFollower(t *testing.T) { run := func(name string, inner func(t *testing.T, walPath string, w *Writer, f *Follower)) { t.Run(name, func(t *testing.T) { walPath := randPath() + ".wal" - log.Print(walPath) defer os.RemoveAll(walPath) w := NewWriter(walPath) defer w.Close()