From 63a0083cf129d42023aee63b59af3d7a89cda6b2 Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Fri, 27 Oct 2017 17:10:16 +0200 Subject: [PATCH] Fix rest of ios_interface issues (#32257) --- .../targets/ios_interface/tests/cli/basic.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/integration/targets/ios_interface/tests/cli/basic.yaml b/test/integration/targets/ios_interface/tests/cli/basic.yaml index 3817673e3c..29a38d78fb 100644 --- a/test/integration/targets/ios_interface/tests/cli/basic.yaml +++ b/test/integration/targets/ios_interface/tests/cli/basic.yaml @@ -141,7 +141,7 @@ - name: Add interface aggregate ios_interface: aggregate: - - { name: "{{ test_interface }}", mtu: 1800, description: test-interface-1 } + - { name: "{{ test_interface }}", mtu: 2000, description: test-interface-1 } - { name: "{{ test_interface2 }}", mtu: 2000, description: test-interface-2 } speed: 1000 state: present @@ -152,7 +152,7 @@ that: - 'result.changed == true' - '"interface {{ test_interface }}" in result.commands' - - '"mtu 1800" in result.commands' + - '"mtu 2000" in result.commands' - '"interface {{ test_interface2 }}" in result.commands' - '"description test-interface-2" in result.commands' - '"mtu 2000" in result.commands' @@ -160,7 +160,7 @@ - name: Add interface aggregate (idempotent) ios_interface: aggregate: - - { name: "{{ test_interface }}", mtu: 1800, description: test-interface-1 } + - { name: "{{ test_interface }}", mtu: 2000, description: test-interface-1 } - { name: "{{ test_interface2 }}", mtu: 2000, description: test-interface-2 } speed: 1000 state: present @@ -174,8 +174,8 @@ - name: Disable interface aggregate ios_interface: aggregate: - - "name: {{ test_interface }}" - - "name: {{ test_interface2 }}" + - { name: "{{ test_interface }}" } + - { name: "{{ test_interface2 }}" } enabled: False state: present authorize: yes @@ -192,8 +192,8 @@ - name: Enable interface aggregate ios_interface: aggregate: - - "name: {{ test_interface }}" - - "name: {{ test_interface2 }}" + - { name: "{{ test_interface }}" } + - { name: "{{ test_interface2 }}" } enabled: True state: present authorize: yes