From 343a709800dbb42931ea7c6b8c70c59d8c3f4c2c Mon Sep 17 00:00:00 2001 From: Ganesh Nalawade Date: Tue, 13 Jun 2017 18:12:42 +0530 Subject: [PATCH] Fix platform agnostic net_user integration test fail (#25649) * Fix platform agnostic net_user integration test fail * Fix minor issue in eos integration test --- test/integration/eos.yaml | 2 +- test/integration/platform_agnostic.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/eos.yaml b/test/integration/eos.yaml index bb0a8d888e6..9e2e4c37166 100644 --- a/test/integration/eos.yaml +++ b/test/integration/eos.yaml @@ -15,6 +15,6 @@ - { role: eos_facts, when: "limit_to in ['*', 'eos_facts']" } - { role: eos_eapi, debug: yes, when: "limit_to in ['*', 'eos_eapi']" } - { role: eos_system, debug: yes, when: "limit_to in ['*', 'eos_system']" } - - { role: eos_user, when: "limit_to in ['*', eos_user']" } + - { role: eos_user, when: "limit_to in ['*', 'eos_user']" } - { role: eos_vlan, debug: yes, when: "limit_to in ['*', 'eos_vlan']" } - { role: eos_vrf, debug: yes, when: "limit_to in ['*', 'eos_vrf']" } diff --git a/test/integration/platform_agnostic.yaml b/test/integration/platform_agnostic.yaml index 70c2293eaa0..57613e580c3 100644 --- a/test/integration/platform_agnostic.yaml +++ b/test/integration/platform_agnostic.yaml @@ -11,6 +11,6 @@ - { role: net_system, when: "limit_to in ['*', 'net_system']" } - { role: net_banner, when: "limit_to in ['*', 'net_banner']" } - { role: net_command, when: "limit_to in ['*', 'net_command']" } - - { role: net_user, when: "limit_to_in ['*', 'net_user']" } + - { role: net_user, when: "limit_to in ['*', 'net_user']" } - { role: net_vlan, when: "limit_to in ['*', 'net_vlan']" } - - { role: net_vrf, when: "limit_to_in ['*', 'net_vrf']" } + - { role: net_vrf, when: "limit_to in ['*', 'net_vrf']" }