mirror of https://github.com/ceph/go-ceph
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 <jmulligan@redhat.com>
This commit is contained in:
parent
2270166490
commit
1feedf3bfc
|
@ -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++ {
|
||||
|
|
Loading…
Reference in New Issue