Most recent changes
Change-Id: I8a4b7be5b68572083b24a9314f70a1359ba63276
diff --git a/TestON/tests/DEMO_SDNIP/DEMO_SDNIP.py b/TestON/tests/DEMO_SDNIP/DEMO_SDNIP.py
index 17ce5a7..b24631d 100644
--- a/TestON/tests/DEMO_SDNIP/DEMO_SDNIP.py
+++ b/TestON/tests/DEMO_SDNIP/DEMO_SDNIP.py
@@ -62,6 +62,7 @@
main.case( "Setting up ONOS environment" )
main.log.demoSummary( "DEMO: TestStation: Setting up ONOS environment" )
+ #main.stop()
cellName = main.params[ 'ENV' ][ 'cellName' ]
global ONOS1Ip
@@ -906,7 +907,7 @@
result = True
for node in [ ONOS1Ip, ONOS2Ip, ONOS3Ip ]:
onosErrors[ node ] = main.ONOSbench.logReport(node, ["ERROR", "WARNING", "EXCEPT"] )
- result = (not onosErrors[ node ]) & result
+ result = (not bool(onosErrors[ node ])) & result
utilities.assert_equals( \
expect=main.TRUE,