Bug Fixes for Vlan Name not assigned and Switch Error (#29953)

pull/30167/head
Anil Kumar Muraleedharan 7 years ago committed by John R Barker
parent 0a5fc3edf9
commit 32f0c9f809

@ -2178,7 +2178,8 @@ def checkVlanNameNotAssigned(
retVal = waitForDeviceResponse(command, prompt, timeout, obj) retVal = waitForDeviceResponse(command, prompt, timeout, obj)
if(retVal.find(vlanName) != -1): if(retVal.find(vlanName) != -1):
return "Nok" return "Nok"
return retVal else:
return "ok"
# EOM # EOM
@ -3175,7 +3176,7 @@ def checkOutputForError(output):
index = output.lower().find("invalid") index = output.lower().find("invalid")
startIndex = index + 8 startIndex = index + 8
if(index == -1): if(index == -1):
index = output.lower().find("Cannot be enabled in L2 Interface") index = output.lower().find("cannot be enabled in l2 interface")
startIndex = index + 34 startIndex = index + 34
if(index == -1): if(index == -1):
index = output.lower().find("incorrect") index = output.lower().find("incorrect")

Loading…
Cancel
Save