Sync enabled_provider_drivers config help message
Update the help message to match the same help message in octavia.conf.
Users were confused because the example was in Python dictionary format.
Change-Id: Ic3f620dcf02c756395da760f8b73874b40318cb6
diff --git a/octavia_tempest_plugin/config.py b/octavia_tempest_plugin/config.py
index 11dc59f..82b2c00 100644
--- a/octavia_tempest_plugin/config.py
+++ b/octavia_tempest_plugin/config.py
@@ -102,12 +102,13 @@
'default RBAC tests. "owner_or_admin" runs the legacy '
'owner or admin tests. "none" disables the RBAC tests.'),
cfg.DictOpt('enabled_provider_drivers',
- help=('List of enabled provider drivers and description '
- 'dictionaries. Must match the driver name in the '
+ help=('A comma separated list of dictionaries of the '
+ 'enabled provider driver names and descriptions. '
+ 'Must match the driver name in the '
'octavia.api.drivers entrypoint. Example: '
- '{\'amphora\': \'The Octavia Amphora driver.\', '
- '\'octavia\': \'Deprecated alias of the Octavia '
- 'Amphora driver.\'}'),
+ 'amphora:The Octavia Amphora driver.,'
+ 'octavia:Deprecated alias of the Octavia '
+ 'Amphora driver.'),
default={'amphora': 'The Octavia Amphora driver.',
'octavia': 'Deprecated alias of the Octavia Amphora '
'driver.'}),