Added missing colon to if statement
diff --git a/TestON/drivers/common/cli/onosclidriver.py b/TestON/drivers/common/cli/onosclidriver.py
index 9ba2790..233af20 100644
--- a/TestON/drivers/common/cli/onosclidriver.py
+++ b/TestON/drivers/common/cli/onosclidriver.py
@@ -1287,7 +1287,7 @@
# TODO: perhaps more meaningful return
return main.FALSE
else:
- if len( ingressDeviceList ) == len( portIngressList )
+ if len( ingressDeviceList ) == len( portIngressList ):
for ingressDevice,portIngress in zip( ingressDeviceList,portIngressList ):
cmd += " " + \
str( ingressDevice ) + "/" +\