File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1779,6 +1779,7 @@ class DcnmIntf:
1779
1779
"INTERFACE" : "/rest/interface" ,
1780
1780
"IF_MARK_DELETE" : "/rest/interface/markdelete" ,
1781
1781
"FABRIC_ACCESS_MODE" : "/rest/control/fabrics/{}/accessmode" ,
1782
+ "BREAKOUT" : "/rest/interface/breakout" ,
1782
1783
},
1783
1784
12 : {
1784
1785
"VPC_SNO" : "/appcenter/cisco/ndfc/api/v1/lan-fabric/rest/interface/vpcpair_serial_number?serial_number={}" ,
Original file line number Diff line number Diff line change @@ -3073,6 +3073,9 @@ def test_dcnm_intf_pc_overridden_existing(self):
3073
3073
3074
3074
def test_dcnm_intf_eth_merged_existing (self ):
3075
3075
3076
+ # Use Version 12 For This Test Case
3077
+ self .run_dcnm_version_supported .side_effect = [12 ]
3078
+
3076
3079
# load the json from playbooks
3077
3080
self .config_data = loadPlaybookData ("dcnm_intf_eth_configs" )
3078
3081
self .payloads_data = loadPlaybookData ("dcnm_intf_eth_payloads" )
@@ -3110,6 +3113,9 @@ def test_dcnm_intf_eth_merged_existing(self):
3110
3113
3111
3114
def test_dcnm_intf_eth_merged_new (self ):
3112
3115
3116
+ # Use Version 12 For This Test Case
3117
+ self .run_dcnm_version_supported .side_effect = [12 ]
3118
+
3113
3119
# load the json from playbooks
3114
3120
self .config_data = loadPlaybookData ("dcnm_intf_eth_configs" )
3115
3121
self .payloads_data = loadPlaybookData ("dcnm_intf_eth_payloads" )
@@ -3653,6 +3659,9 @@ def test_dcnm_intf_subint_overridden_existing(self):
3653
3659
3654
3660
def test_dcnm_intf_lo_merged_new (self ):
3655
3661
3662
+ # Use Version 12 For This Test Case
3663
+ self .run_dcnm_version_supported .side_effect = [12 ]
3664
+
3656
3665
# load the json from playbooks
3657
3666
self .config_data = loadPlaybookData ("dcnm_intf_lo_configs" )
3658
3667
self .payloads_data = loadPlaybookData ("dcnm_intf_lo_payloads" )
You can’t perform that action at this time.
0 commit comments