diff options
Diffstat (limited to 'android/all_teams.go')
-rw-r--r-- | android/all_teams.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/android/all_teams.go b/android/all_teams.go index d4bf7d0c4..e3c2e70bd 100644 --- a/android/all_teams.go +++ b/android/all_teams.go @@ -1,9 +1,10 @@ package android import ( - "android/soong/android/team_proto" "path/filepath" + "android/soong/android/team_proto" + "google.golang.org/protobuf/proto" ) @@ -93,7 +94,7 @@ func (t *allTeamsSingleton) GenerateBuildActions(ctx SingletonContext) { } testModInfo := TestModuleInformation{} - if tmi, ok := SingletonModuleProvider(ctx, module, TestOnlyProviderKey); ok { + if tmi, ok := OtherModuleProvider(ctx, module, TestOnlyProviderKey); ok { testModInfo = tmi } |