mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00

Since every schema entity has 'data', the data- prefix conveys no information. These tests actually exercise commands. Only commands have arguments, so change the prefix to to args-. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
5 lines
381 B
Text
5 lines
381 B
Text
[OrderedDict([('enum', 'abc'), ('data', ['a', 'b', 'c'])]),
|
|
OrderedDict([('struct', 'def'), ('data', OrderedDict([('array', ['abc'])]))]),
|
|
OrderedDict([('command', 'okay'), ('data', OrderedDict([('member1', ['int']), ('member2', ['def'])]))])]
|
|
[{'enum_name': 'abc', 'enum_values': ['a', 'b', 'c']}]
|
|
[OrderedDict([('struct', 'def'), ('data', OrderedDict([('array', ['abc'])]))])]
|