diff options
author | 2024-05-08 22:28:05 +0000 | |
---|---|---|
committer | 2024-05-08 22:28:05 +0000 | |
commit | 7eaf503cfd42a70f625405bb4a4b67eb5de47c8d (patch) | |
tree | 538010b7947258f555d652310530ccf43905ce72 /java/androidmk_test.go | |
parent | 2aff024c189e5217b102d7b307fddc6c303b1c38 (diff) | |
parent | a3a05460b478ed59c527dec1c8b2efa61ce9c53c (diff) |
Merge "Revert^2 "Remove compilation actions from java sdk library"" into main
Diffstat (limited to 'java/androidmk_test.go')
-rw-r--r-- | java/androidmk_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/androidmk_test.go b/java/androidmk_test.go index 1232cd1ee..2978a40aa 100644 --- a/java/androidmk_test.go +++ b/java/androidmk_test.go @@ -161,8 +161,8 @@ func TestJavaSdkLibrary_RequireXmlPermissionFile(t *testing.T) { moduleName string expected []string }{ - {"foo-shared_library", []string{"foo-shared_library.xml"}}, - {"foo-no_shared_library", nil}, + {"foo-shared_library", []string{"foo-shared_library.impl", "foo-shared_library.xml"}}, + {"foo-no_shared_library", []string{"foo-no_shared_library.impl"}}, } for _, tc := range testCases { mod := result.ModuleForTests(tc.moduleName, "android_common").Module() |