Skip to content

Commit 73a37fb

Browse files
committed
fixed IT: dcnm_network templates deploy parameter
1 parent 0643908 commit 73a37fb

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

tests/integration/targets/dcnm_network/templates/self-contained-tests/double_net_dhcp_changed_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
attach:
2626
- ip_address: "{{ test_data_common.sw2 }}"
2727
ports: []
28-
deploy: "{{ test_data_common.deploy }}"
28+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/double_net_dhcp_conf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
attach:
2727
- ip_address: "{{ test_data_common.sw1 }}"
2828
ports: []
29-
deploy: "{{ test_data_common.deploy }}"
29+
deploy: {{ test_data_common.deploy | bool }}
3030

3131
- net_name: "{{ test_data_common.net2 }}"
3232
vrf_name: "{{ test_data_common.net2_vrf }}"
@@ -50,4 +50,4 @@
5050
attach:
5151
- ip_address: "{{ test_data_common.sw2 }}"
5252
ports: []
53-
deploy: "{{ test_data_common.deploy }}"
53+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/double_net_mcast_changed_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
attach:
2121
- ip_address: "{{ test_data_common.sw1 }}"
2222
ports: []
23-
deploy: "{{ test_data_common.deploy | bool }}"
23+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/double_net_mcast_conf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
attach:
2121
- ip_address: "{{ test_data_common.sw1 }}"
2222
ports: []
23-
deploy: "{{ test_data_common.deploy | bool }}"
23+
deploy: {{ test_data_common.deploy | bool }}
2424

2525
- net_name: "{{ test_data_common.net2 }}"
2626
vrf_name: "{{ test_data_common.net2_vrf }}"
@@ -38,4 +38,4 @@
3838
attach:
3939
- ip_address: "{{ test_data_common.sw1 }}"
4040
ports: []
41-
deploy: "{{ test_data_common.deploy | bool }}"
41+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net1_changed_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
attach:
2222
- ip_address: "{{ test_data_common.sw1 }}"
2323
ports: ["{{ test_data_common.sw1_int3 }}", "{{ test_data_common.sw1_int4 }}"]
24-
deploy: "{{ test_data_common.deploy | bool }}"
24+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net1_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
attach:
2222
- ip_address: "{{ test_data_common.sw1 }}"
2323
ports: ["{{ test_data_common.sw1_int1 }}", "{{ test_data_common.sw1_int2 }}"]
24-
deploy: "{{ test_data_common.deploy | bool }}"
24+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net1_dhcp_changed_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
attach:
2727
- ip_address: "{{ test_data_common.sw1 }}"
2828
ports: []
29-
deploy: "{{ test_data_common.deploy | bool }}"
29+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net1_mcast_changed_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
attach:
2121
- ip_address: "{{ test_data_common.sw1 }}"
2222
ports: []
23-
deploy: "{{ test_data_common.deploy | bool }}"
23+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net1_mcast_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
attach:
2121
- ip_address: "{{ test_data_common.sw1 }}"
2222
ports: []
23-
deploy: "{{ test_data_common.deploy | bool }}"
23+
deploy: {{ test_data_common.deploy | bool }}

tests/integration/targets/dcnm_network/templates/self-contained-tests/net2_conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
attach:
2222
- ip_address: "{{ test_data_common.sw2 }}"
2323
ports: ["{{ test_data_common.sw2_int1 }}", "{{ test_data_common.sw2_int2 }}"]
24-
deploy: "{{ test_data_common.deploy | bool }}"
24+
deploy: {{ test_data_common.deploy | bool }}

0 commit comments

Comments
 (0)