diff options
author | 2022-07-27 02:10:03 +0100 | |
---|---|---|
committer | 2022-09-09 17:36:29 +0000 | |
commit | c55265c083eee1af192e8f34bc0096e593f3a211 (patch) | |
tree | 5bee8323a6270878235173447cda90bbabc51eb4 /libnativeloader/native_loader_test.cpp | |
parent | 488517a2ad08abbfd095eb5b7da11313c9e07efd (diff) |
Use a different name for the product classloader namespace.
This is a correction - it reused the vendor classloader namspace name
by mistake when product apps were introduced.
Test: `atest libnativeloader_e2e_tests` and look at logcat messages
Bug: 137356719
Change-Id: I3e8cfcb9ed8112bb0144ff2ea53fe7a8bcb63694
Diffstat (limited to 'libnativeloader/native_loader_test.cpp')
-rw-r--r-- | libnativeloader/native_loader_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/native_loader_test.cpp b/libnativeloader/native_loader_test.cpp index 7bf4cb754a..3825614545 100644 --- a/libnativeloader/native_loader_test.cpp +++ b/libnativeloader/native_loader_test.cpp @@ -378,7 +378,7 @@ TEST_P(NativeLoaderTest_Create, UnbundledProductApp) { is_shared = false; if (is_product_vndk_version_defined()) { - expected_namespace_name = "vendor-classloader-namespace"; + expected_namespace_name = "product-classloader-namespace"; expected_library_path = expected_library_path + ":/product/" LIB_DIR ":/system/product/" LIB_DIR; expected_permitted_path = expected_permitted_path + ":/product/" LIB_DIR ":/system/product/" LIB_DIR; |