mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Linode inventory plugin typo fixes (#3218)
- Fix a typo in the Linode inventory plugin unit tests - Fix some style issues in descriptions where punctuation was missing Signed-off-by: Kellin <kellin@retromud.org>
This commit is contained in:
parent
8a4cdd2b8a
commit
fccae19177
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ DOCUMENTATION = r'''
|
||||||
- constructed
|
- constructed
|
||||||
options:
|
options:
|
||||||
plugin:
|
plugin:
|
||||||
description: marks this as an instance of the 'linode' plugin
|
description: Marks this as an instance of the 'linode' plugin.
|
||||||
required: true
|
required: true
|
||||||
choices: ['linode', 'community.general.linode']
|
choices: ['linode', 'community.general.linode']
|
||||||
access_token:
|
access_token:
|
||||||
|
|
|
@ -62,7 +62,7 @@ def test_empty_config_query_options(inventory):
|
||||||
assert regions == types == tags == []
|
assert regions == types == tags == []
|
||||||
|
|
||||||
|
|
||||||
def test_conig_query_options(inventory):
|
def test_config_query_options(inventory):
|
||||||
regions, types, tags = inventory._get_query_options({
|
regions, types, tags = inventory._get_query_options({
|
||||||
'regions': ['eu-west', 'us-east'],
|
'regions': ['eu-west', 'us-east'],
|
||||||
'types': ['g5-standard-2', 'g6-standard-2'],
|
'types': ['g5-standard-2', 'g6-standard-2'],
|
||||||
|
|
Loading…
Reference in a new issue