Skip to content

Commit e0e4d9d

Browse files
committed
Addressing lint issues reported by PR build failures.
Signed-off-by: lakshmj <[email protected]>
1 parent a407e59 commit e0e4d9d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • tests/integration/targets/routerdynamicrouting_info/tasks

tests/integration/targets/routerdynamicrouting_info/tasks/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
- name: Assert show command succeeded
1717
tags: test
18-
assert:
18+
ansible.builtin.assert:
1919
that:
2020
- not result.changed
2121
- not result.failed
@@ -38,7 +38,7 @@
3838

3939
- name: Assert sh command succeeded
4040
tags: test
41-
assert:
41+
ansible.builtin.assert:
4242
that:
4343
- not result.changed
4444
- not result.failed
@@ -61,7 +61,7 @@
6161

6262
- name: Assert uppercase SHOW command succeeded
6363
tags: test
64-
assert:
64+
ansible.builtin.assert:
6565
that:
6666
- not result.changed
6767
- not result.failed
@@ -84,7 +84,7 @@
8484

8585
- name: Assert invalid command failed
8686
tags: test
87-
assert:
87+
ansible.builtin.assert:
8888
that:
8989
- result.failed
9090
- "'must start with' in result.msg"
@@ -106,7 +106,7 @@
106106

107107
- name: Assert delete command failed
108108
tags: test
109-
assert:
109+
ansible.builtin.assert:
110110
that:
111111
- result.failed
112112
- "'must start with' in result.msg"
@@ -127,7 +127,7 @@
127127

128128
- name: Assert command with whitespace succeeded
129129
tags: test
130-
assert:
130+
ansible.builtin.assert:
131131
that:
132132
- not result.changed
133133
- not result.failed

0 commit comments

Comments
 (0)