Fix type error on logs
Change-Id: I596b5eb1aa9e5b83c9d2b76c7b4a1d5512c5776e
diff --git a/TestON/tests/FUNCintent/FUNCintent.py b/TestON/tests/FUNCintent/FUNCintent.py
index 84d189a..1cb73c8 100644
--- a/TestON/tests/FUNCintent/FUNCintent.py
+++ b/TestON/tests/FUNCintent/FUNCintent.py
@@ -397,7 +397,7 @@
intentLeadersOld = main.CLIs[ 0 ].leaderCandidates()
- main.case( "TESTING HOST INTENTS - " + main.numCtrls +
+ main.case( "TESTING HOST INTENTS - " + str( main.numCtrls ) +
" NODE(S) - OF " + main.OFProtocol )
main.caseExplanation = "This test case tests Host intents using " +\
str( main.numCtrls ) + " node(s) cluster;\n" +\
@@ -556,7 +556,7 @@
assert main.numSwitch, "Placed the total number of switch topology in \
main.numSwitch"
- main.case( "TESTING POINT INTENTS - " + main.numCtrls +
+ main.case( "TESTING POINT INTENTS - " + str( main.numCtrls ) +
" NODE(S) - OF " + main.OFProtocol )
main.caseExplanation = "This test case will test point to point" +\
" intents using " + str( main.numCtrls ) +\
@@ -829,8 +829,8 @@
assert main.numSwitch, "Placed the total number of switch topology in \
main.numSwitch"
- main.case( "TESTING SINGLE TO MULTI POINT INTENTS - " + main.numCtrls +
- " NODE(S) - OF " + main.OFProtocol )
+ main.case( "TESTING SINGLE TO MULTI POINT INTENTS - " +
+ str( main.numCtrls ) + " NODE(S) - OF " + main.OFProtocol )
main.caseExplanation = "This test case will test single point to" +\
" multi point intents using " +\
str( main.numCtrls ) + " node(s) cluster;\n" +\
@@ -969,8 +969,8 @@
assert main.numSwitch, "Placed the total number of switch topology in \
main.numSwitch"
- main.case( "TESTING MULTI TO SINGLE POINT INTENTS - " + main.numCtrls +
- " NODE(S) - OF " + main.OFProtocol )
+ main.case( "TESTING MULTI TO SINGLE POINT INTENTS - " +
+ str( main.numCtrls ) + " NODE(S) - OF " + main.OFProtocol )
main.caseExplanation = "This test case will test single point to" +\
" multi point intents using " +\
str( main.numCtrls ) + " node(s) cluster;\n" +\