summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAmos Bianchi <amosbianchi@google.com>2021-01-20 17:38:56 -0800
committerAmos Bianchi <amosbianchi@google.com>2021-01-20 17:38:56 -0800
commit09aa2d02fcc43823f0fc9ab23de4e75b3b68ed14 (patch)
tree64f883eb2ab3d963e58c30b14b437a7b57f9e26a /tests
parentc991ca2d7f1222d231a4f3a820f602e8baff4818 (diff)
Rename interface method name.
Bug: 176240491 Test: atest hidl_lazy_test Change-Id: I0efa4ebf695035c27ce15594332ee7dee822a52a
Diffstat (limited to 'tests')
-rw-r--r--tests/lazy/1.1/ILazy.hal6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lazy/1.1/ILazy.hal b/tests/lazy/1.1/ILazy.hal
index b0a6a2aa09..eb48fd336a 100644
--- a/tests/lazy/1.1/ILazy.hal
+++ b/tests/lazy/1.1/ILazy.hal
@@ -20,10 +20,10 @@ import android.hardware.tests.lazy@1.0;
interface ILazy extends @1.0::ILazy {
/**
- * Ask the process hosting the service to install a callback that notifies
- * it when the number of active (i.e. with clients) services changes.
+ * Ask the process hosting the service to install a callback that notifies if there are
+ * services with clients.
* For testing purposes, this callback exercises the code to unregister/re-register
* the services and eventually shuts down the process.
*/
- setCustomActiveServicesCountCallback();
+ setCustomActiveServicesCallback();
};