remove errant fmt.Println

This commit is contained in:
James Bardin 2022-06-21 11:32:07 -04:00
parent 77cca0af7c
commit 03fc2b09df

View File

@ -1,7 +1,6 @@
package command
import (
"fmt"
"testing"
)
@ -37,7 +36,7 @@ func TestBackendMigrate_promptMultiStatePattern(t *testing.T) {
},
}
for name, tc := range cases {
fmt.Println("Test: ", name)
t.Log("Test: ", name)
m := testMetaBackend(t, nil)
input := map[string]string{}
cleanup := testInputMap(t, input)