get rid of fmt.Print* usages

This commit is contained in:
Michael Eischer
2025-09-14 15:29:39 +02:00
parent 3410808dcf
commit ca5b0c0249
7 changed files with 20 additions and 29 deletions
+1 -2
View File
@@ -2,7 +2,6 @@ package restic
import (
"encoding/json"
"fmt"
"testing"
"time"
@@ -73,7 +72,7 @@ func TestSymlinkSerialization(t *testing.T) {
var n2 Node
err = json.Unmarshal(ser, &n2)
test.OK(t, err)
fmt.Println(string(ser))
t.Logf("serialized %q\n", string(ser))
test.Equals(t, n.LinkTarget, n2.LinkTarget)
}