From: Takashi Sakamoto Date: Sun, 22 Dec 2019 02:04:26 +0000 (+0900) Subject: ctl: tests: fix a test template for elem_id X-Git-Tag: v0.1.0~376 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=03d456e49e7c2c28267a884b3e2042d642397982;p=alsa-gobject.git 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 --- 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):