diff options
author | Sagar Paul <sagpaul@redhat.com> | 2021-06-22 23:55:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 18:25:12 +0000 |
commit | a8e806d61fc1e4fd88592bee7e501fbe259cca99 (patch) | |
tree | ce0a89c73c8e14c173c37dd9e720e94ad2576441 /tests/integration/targets/vyos_bgp_global | |
parent | eb46eb529a8bcfaeb5a7e736550d7cfb612b02d7 (diff) | |
download | vyos-ansible-collection-a8e806d61fc1e4fd88592bee7e501fbe259cca99.tar.gz vyos-ansible-collection-a8e806d61fc1e4fd88592bee7e501fbe259cca99.zip |
Spelling glitch fix on doc (#168)
Spelling glitch fix on doc
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'tests/integration/targets/vyos_bgp_global')
-rw-r--r-- | tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml b/tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml index 8a09c01..a398b7e 100644 --- a/tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml +++ b/tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml @@ -8,8 +8,7 @@ - include_tasks: _preconfig.yaml - block: - - - name: Merge the provided configuration with the exisiting running configuration + - name: Merge the provided configuration with the existing running configuration register: result vyos.vyos.vyos_bgp_global: &id001 config: @@ -56,7 +55,8 @@ - result.before == {} - result.after == merged.after - - name: Merge the provided configuration with the existing running configuration + - name: + Merge the provided configuration with the existing running configuration (IDEMPOTENT) register: result vyos.vyos.vyos_bgp_global: *id001 @@ -67,5 +67,4 @@ - result['changed'] == false always: - - include_tasks: _remove_config.yaml |