summaryrefslogtreecommitdiff
path: root/test/units/plugins/inventory/test_constructed.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/units/plugins/inventory/test_constructed.py')
-rw-r--r--test/units/plugins/inventory/test_constructed.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/units/plugins/inventory/test_constructed.py b/test/units/plugins/inventory/test_constructed.py
index 581e0253..8ae78f1d 100644
--- a/test/units/plugins/inventory/test_constructed.py
+++ b/test/units/plugins/inventory/test_constructed.py
@@ -194,11 +194,11 @@ def test_parent_group_templating_error(inventory_module):
'parent_group': '{{ location.barn-yard }}'
}
]
- with pytest.raises(AnsibleParserError) as err_message:
+ with pytest.raises(AnsibleParserError) as ex:
inventory_module._add_host_to_keyed_groups(
keyed_groups, host.vars, host.name, strict=True
)
- assert 'Could not generate parent group' in err_message
+ assert 'Could not generate parent group' in str(ex.value)
# invalid parent group did not raise an exception with strict=False
inventory_module._add_host_to_keyed_groups(
keyed_groups, host.vars, host.name, strict=False
@@ -213,17 +213,17 @@ def test_keyed_group_exclusive_argument(inventory_module):
host = inventory_module.inventory.get_host('cow')
keyed_groups = [
{
- 'key': 'tag',
+ 'key': 'nickname',
'separator': '_',
'default_value': 'default_value_name',
'trailing_separator': True
}
]
- with pytest.raises(AnsibleParserError) as err_message:
+ with pytest.raises(AnsibleParserError) as ex:
inventory_module._add_host_to_keyed_groups(
keyed_groups, host.vars, host.name, strict=True
)
- assert 'parameters are mutually exclusive' in err_message
+ assert 'parameters are mutually exclusive' in str(ex.value)
def test_keyed_group_empty_value(inventory_module):