diff options
5 files changed, 6 insertions, 2 deletions
diff --git a/changelogs/fragments/T7127-fix-interface-integration-13.yaml b/changelogs/fragments/T7127-fix-interface-integration-13.yaml new file mode 100644 index 0000000..4339708 --- /dev/null +++ b/changelogs/fragments/T7127-fix-interface-integration-13.yaml @@ -0,0 +1,3 @@ +--- +minor_changes: + - vyos_interfaces - fix bug in RTT tests on 1.3 due to handling of MTUs diff --git a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml index 9144919..31f527f 100644 --- a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml +++ b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml @@ -1,5 +1,4 @@ --- - - name: ensure facts include_tasks: _get_version.yaml diff --git a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml index 1cd452b..afada4e 100644 --- a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml +++ b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml @@ -1,5 +1,4 @@ --- - - name: ensure facts include_tasks: _get_version.yaml diff --git a/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml b/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml index 2ec37f0..cfe1b0f 100644 --- a/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml +++ b/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml @@ -22,6 +22,7 @@ - vlan_id: 101 enabled: false + mtu: 1401 - name: eth2 description: Interface - 2 @@ -51,6 +52,7 @@ - vlan_id: 101 description: Eth1 - VIF 101 (WILL BE REMOVED) enabled: true + mtu: 1401 - name: eth2 description: Interface 2 (ADMIN DOWN) (WILL BE REVERTED) diff --git a/tests/integration/targets/vyos_interfaces/vars/main.yaml b/tests/integration/targets/vyos_interfaces/vars/main.yaml index be87cf8..4e66747 100644 --- a/tests/integration/targets/vyos_interfaces/vars/main.yaml +++ b/tests/integration/targets/vyos_interfaces/vars/main.yaml @@ -167,6 +167,7 @@ round_trip: - vlan_id: 101 description: Eth1 - VIF 101 (WILL BE REMOVED) enabled: true + mtu: 1401 - name: eth2 description: Interface 2 (ADMIN DOWN) (WILL BE REVERTED) mtu: 1406 |