From 47665ca335b86405e4c478cf37411c8322871a40 Mon Sep 17 00:00:00 2001 From: Kedar Kekan <4506537+kedarX@users.noreply.github.com> Date: Tue, 16 Jan 2018 17:57:11 +0530 Subject: [PATCH] * Fix DCI failure in net_* integration test of iosxr_logging (#34926) --- .../targets/iosxr_logging/tests/cli/net_logging.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration/targets/iosxr_logging/tests/cli/net_logging.yaml b/test/integration/targets/iosxr_logging/tests/cli/net_logging.yaml index 89ec047230..b2b94f576e 100644 --- a/test/integration/targets/iosxr_logging/tests/cli/net_logging.yaml +++ b/test/integration/targets/iosxr_logging/tests/cli/net_logging.yaml @@ -6,14 +6,14 @@ - name: Remove host logging - setup net_logging: - dest: hostnameprefix + dest: host name: 172.16.0.1 state: absent provider: "{{ cli }}" - name: Set up host logging using platform agnostic module net_logging: - dest: hostnameprefix + dest: host name: 172.16.0.1 state: present provider: "{{ cli }}" @@ -22,11 +22,11 @@ - assert: that: - 'result.changed == true' - - '"logging hostnameprefix 172.16.0.1" in result.commands' + - '"logging 172.16.0.1 vrf default severity info" in result.commands' - name: Remove host logging - teardown net_logging: - dest: hostnameprefix + dest: host name: 172.16.0.1 state: absent provider: "{{ cli }}"