diff options
Diffstat (limited to 'tests/integration/targets/vyos_bgp_global/tests/cli/merged.yaml')
-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 |