Skip to content

Commit

Permalink
yamllint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Dec 4, 2023
1 parent 2e4f3ae commit d2ffde2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
- name: "Testing create bundle"
ansible.builtin.assert:
that:
# yamllint disable-line rule:colons
- create_bundle_data.data.data == "Bundle : Test_bundle successfully created"

- name: "Create second bundle for test"
Expand All @@ -78,6 +79,7 @@
- name: "Testing create bundle"
ansible.builtin.assert:
that:
# yamllint disable-line rule:colons
- create_bundle_data_2.data.data == "Bundle : vEOS-lab-4.30.1F successfully created"

- name: Build Container Topology with image bundle On {{ inventory_hostname }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
requests.packages.urllib3.disable_warnings()

# Setting variables
RECONCILE = 'RECONCILE_' # Prefix for the configlet name
RECONCILE = 'RECONCILE_' # Prefix for the configlet name
fixture_file = 'molecule/fixtures/cv_device_v3.yaml'

with open(fixture_file, encoding="utf-8") as f:
Expand Down Expand Up @@ -36,4 +36,4 @@
rc = clnt.api.get_device_configuration(dev_mac)
name = RECONCILE + device['serialNumber']
update = clnt.api.update_reconcile_configlet(dev_mac, rc, "", name, True)
addcfg = clnt.api.apply_configlets_to_device("auto-reconciling", device,[update['data']])
addcfg = clnt.api.apply_configlets_to_device("auto-reconciling", device, [update['data']])
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

---
scenario:
test_sequence:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- node : 192.168.0.5
- node: 192.168.0.5
username: arista
password: ""
device: s1-leaf1

0 comments on commit d2ffde2

Please sign in to comment.