Remove printf in tests

This causes unnecessary spam when running
m nothing --no-skip-soong-tests.

Test: m nothing --no-skip-soong-tests
Change-Id: I4d893b3da47a9f79774c67274a84ff77be9c4811
This commit is contained in:
Cole Faust 2024-05-21 11:22:29 -07:00
parent e0d5ea1d7c
commit bc82eaf0f6

View file

@ -15,7 +15,6 @@
package android
import (
"fmt"
"strings"
"testing"
@ -648,7 +647,6 @@ func TestPrefer32Deps(t *testing.T) {
}
bp := strings.Replace(bpTemplate, "%COMPILE_MULTILIB%", tc.compileMultilib, -1)
bp = strings.Replace(bp, "%DEPS%", `["`+strings.Join(tc.deps, `", "`)+`"]`, -1)
fmt.Printf("bp = %s\n", bp)
runPackagingTest(t, config, bp, tc.expected)
}
}