Skip to content

Commit

Permalink
Merge branch 'main' into add_cdp_neighbors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruchip16 authored Dec 13, 2023
2 parents aaf2d5b + a1a6829 commit d436f01
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 3 additions & 0 deletions changelogs/fragments/fix_iosxr_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
trivial:
- Fix iosxr_config integration tests
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- ansible.builtin.assert:
that:
- result.changed == true
- result.updates is not defined
- result.updates is defined

- name: Delete configurable backup file path
ansible.builtin.file:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
- ansible.builtin.assert:
that:
- result.changed == false
- result.updates is not defined
- "'comment argument cannot be more than 60 characters' in result.msg"

- ansible.builtin.debug: msg="END cli/comment-too-long.yaml on connection={{ ansible_connection }}"
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- ansible.builtin.assert:
that:
- result.changed == true
- result.updates is not defined
- result.updates is defined

- name: Check device with configuration
register: result
Expand All @@ -31,7 +31,6 @@
- ansible.builtin.assert:
that:
- result.changed == false
- result.updates is not defined

- name: Assert accurately report configuration failure during pseudo-atomic operation
register: result
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- ansible.builtin.assert:
that:
- result.changed == true
- result.updates is not defined
- result.updates is defined

- name: Check device with configuration
register: result
Expand All @@ -28,6 +28,5 @@
- ansible.builtin.assert:
that:
- result.changed == false
- result.updates is not defined

- ansible.builtin.debug: msg="END cli/src_basic.yaml on connection={{ ansible_connection }}"
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- ansible.builtin.assert:
that:
- result.changed == true
- result.updates is not defined
- result.updates is defined

- name: Check device with configuration
register: result
Expand All @@ -29,6 +29,5 @@
- ansible.builtin.assert:
that:
- result.changed == false
- result.updates is not defined

- ansible.builtin.debug: msg="END cli/src_match_none.yaml on connection={{ ansible_connection }}"

0 comments on commit d436f01

Please sign in to comment.