it was introduced in
280c23ba. so update the schema test accordingly
Signed-off-by: Kefu Chai <kchai@redhat.com>
module_info_schema = JObj({
'can_run': bool,
'error_string': str,
- 'name': str
+ 'name': str,
+ 'module_options': JObj(
+ {},
+ allow_unknown=True,
+ unknown_schema=JObj({
+ 'name': str,
+ 'type': str,
+ 'level': str,
+ 'flags': int,
+ 'default_value': str,
+ 'min': str,
+ 'max': str,
+ 'enum_allowed': JList(str),
+ 'see_also': JList(str),
+ 'desc': str,
+ 'long_desc': str,
+ 'tags': JList(str),
+ })),
})
schema = JObj({
'client_perf': JObj({