From 03d456e49e7c2c28267a884b3e2042d642397982 Mon Sep 17 00:00:00 2001 From: Takashi Sakamoto Date: Sun, 22 Dec 2019 11:04:26 +0900 Subject: [PATCH] ctl: tests: fix a test template for elem_id Although a test template for elem_id does not run actually, it's better to keep it as prepared. This commit fixes the test template for the latest implementation of elem_id. Signed-off-by: Takashi Sakamoto --- tests/alsactl-elem-id | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/alsactl-elem-id b/tests/alsactl-elem-id index 155b141..454ff9d 100644 --- a/tests/alsactl-elem-id +++ b/tests/alsactl-elem-id @@ -10,15 +10,15 @@ gi.require_version('ALSACtl', '0.0') from gi.repository import ALSACtl target = ALSACtl.ElemId() -props = ( - 'numid', - 'iface', - 'device', - 'subdevice', - 'name', - 'index', +props = () +methods = ( + 'get_numid', + 'get_iface', + 'get_device', + 'get_subdevice', + 'get_name', + 'get_index', ) -methods = () signals = () if not test(target, props, methods, signals): -- 2.47.3