From 1feedf3bfc0218a2b68578d45265129bfdcd6f85 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 6 Mar 2023 15:38:48 -0500 Subject: [PATCH] rbd: remove stray debugging prints from mirror tests It is doubtful that these Print(f)s have been useful to any one for a long time. Remove them. Signed-off-by: John Mulligan --- rbd/mirror_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/rbd/mirror_test.go b/rbd/mirror_test.go index af1f505..1d90634 100644 --- a/rbd/mirror_test.go +++ b/rbd/mirror_test.go @@ -771,7 +771,6 @@ func TestMirrorBootstrapToken(t *testing.T) { err = SetMirrorMode(ioctx2, MirrorModeImage) require.NoError(t, err) - fmt.Printf("TOKEN: %s\n", string(token)) err = ImportMirrorPeerBootstrapToken( ioctx2, MirrorPeerDirectionRxTx, token) assert.NoError(t, err) @@ -1077,7 +1076,6 @@ func TestMirrorImageInstanceIDLists(t *testing.T) { t.Run("getInstanceIDSlice", func(t *testing.T) { lst, err := MirrorImageInstanceIDList(ioctx, "", 0) - fmt.Print(lst) assert.NoError(t, err) assert.Len(t, lst, 5) for i := 1; i < len(lst); i++ {