summaryrefslogtreecommitdiff
path: root/test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml')
-rw-r--r--test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml b/test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml
index f1ddc71b..e45331a1 100644
--- a/test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml
+++ b/test/integration/targets/incidental_vyos_config/tests/cli/check_config.yaml
@@ -22,7 +22,7 @@
- name: Check that multiple duplicate lines collapse into a single commands
assert:
that:
- - "{{ result.commands|length }} == 1"
+ - "result.commands|length == 1"
- name: Check that set is correctly prepended
assert:
@@ -58,6 +58,6 @@
- assert:
that:
- - "{{ result.filtered|length }} == 2"
+ - "result.filtered|length == 2"
- debug: msg="END cli/config_check.yaml on connection={{ ansible_connection }}"