diff options
Diffstat (limited to 'test/integration/targets/junos_config/tests/netconf/multiple.yaml')
-rw-r--r-- | test/integration/targets/junos_config/tests/netconf/multiple.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/junos_config/tests/netconf/multiple.yaml b/test/integration/targets/junos_config/tests/netconf/multiple.yaml index 385898f776..1b59e580c3 100644 --- a/test/integration/targets/junos_config/tests/netconf/multiple.yaml +++ b/test/integration/targets/junos_config/tests/netconf/multiple.yaml @@ -13,7 +13,7 @@ junos_config: lines: - 'set system host-name {{ inventory_hostname_short }}' - - 'set interfaces lo0 unit 0 family inet address 1.1.1.1/32' + - 'set interfaces lo0 unit 0 family inet address 192.0.2.1/32' provider: "{{ netconf }}" register: result @@ -23,13 +23,13 @@ # Ensure host-name *hasn't* been updated - "'host-name;' not in result.diff.prepared" # Ensure interface has *been* updated - - "'address 1.1.1.1/32' in result.diff.prepared" + - "'address 192.0.2.1/32' in result.diff.prepared" - name: check multiple commands idempotent junos_config: lines: - 'set system host-name {{ inventory_hostname_short }}' - - 'set interfaces lo0 unit 0 family inet address 1.1.1.1/32' + - 'set interfaces lo0 unit 0 family inet address 192.0.2.1/32' provider: "{{ netconf }}" register: result |