remove debug statements

Signed-off-by: Althaf M <althafm@outlook.com>
pull/13533/head
Althaf M 9 months ago
parent 10d267ed8b
commit 57d85993cb

@ -18,7 +18,6 @@ import (
"encoding/json" "encoding/json"
"os" "os"
"path/filepath" "path/filepath"
"reflect"
"sort" "sort"
"strconv" "strconv"
"testing" "testing"
@ -256,7 +255,6 @@ func TestProcessDependencyImportValues(t *testing.T) {
default: default:
if pv != vv { if pv != vv {
t.Errorf("failed to match imported string value %q with expected %q for key %q", pv, vv, kk) t.Errorf("failed to match imported string value %q with expected %q for key %q", pv, vv, kk)
t.Error(reflect.TypeOf(pv))
} }
} }
} }
@ -333,7 +331,6 @@ func TestProcessDependencyImportValuesMultiLevelPrecedence(t *testing.T) {
default: default:
if pv != vv { if pv != vv {
t.Errorf("failed to match imported string value %q with expected %q", pv, vv) t.Errorf("failed to match imported string value %q with expected %q", pv, vv)
t.Error(reflect.TypeOf(pv))
} }
} }
} }

Loading…
Cancel
Save