Merge "Add missing t.Helper() to androidmk functions"
This commit is contained in:
commit
17d0a8509b
1 changed files with 2 additions and 0 deletions
|
@ -1120,6 +1120,7 @@ func SetKatiEnabledForTests(config Config) {
|
|||
}
|
||||
|
||||
func AndroidMkEntriesForTest(t *testing.T, ctx *TestContext, mod blueprint.Module) []AndroidMkEntries {
|
||||
t.Helper()
|
||||
var p AndroidMkEntriesProvider
|
||||
var ok bool
|
||||
if p, ok = mod.(AndroidMkEntriesProvider); !ok {
|
||||
|
@ -1134,6 +1135,7 @@ func AndroidMkEntriesForTest(t *testing.T, ctx *TestContext, mod blueprint.Modul
|
|||
}
|
||||
|
||||
func AndroidMkDataForTest(t *testing.T, ctx *TestContext, mod blueprint.Module) AndroidMkData {
|
||||
t.Helper()
|
||||
var p AndroidMkDataProvider
|
||||
var ok bool
|
||||
if p, ok = mod.(AndroidMkDataProvider); !ok {
|
||||
|
|
Loading…
Reference in a new issue