From 18145971291a2b88b41ad88680595241560f0f35 Mon Sep 17 00:00:00 2001 From: jdl Date: Mon, 25 Jul 2022 17:31:19 +0200 Subject: [PATCH] cleanup --- wal/follower_test.go | 2 -- 1 file changed, 2 deletions(-) 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()