Remove pretty print debugging
diff --git a/cfg/lock_test.go b/cfg/lock_test.go index 5d1b52a..855bd62 100644 --- a/cfg/lock_test.go +++ b/cfg/lock_test.go
@@ -1,10 +1,6 @@ package cfg -import ( - "testing" - - "github.com/kr/pretty" -) +import "testing" const lockFix = ` imports: @@ -23,7 +19,7 @@ if err != nil { t.Errorf("LockfileFromYaml failed to detect and autoconvert legacy lock file with err %s", err) } - pretty.Println(ll) + if !legacy { t.Error("LockfileFromYaml failed to report autoconversion of legacy lock file") }