summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2008-06-28 00:00:10 +0000
committerNanang Izzuddin <nanang@teluu.com>2008-06-28 00:00:10 +0000
commitb3da86fc77ae67cc955aedb7c43045cf2327d10d (patch)
treebd49ac2f9d3907651487f35a4816454d9d4173a8
parent4ae5b9c8a79c82df96aecf64335177c3a998a808 (diff)
Fixed wrong variable name for number of failed tests
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2085 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjsip-apps/src/test-pjsua/runall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjsip-apps/src/test-pjsua/runall.py b/pjsip-apps/src/test-pjsua/runall.py
index 46a7f52b..59ac6c8a 100644
--- a/pjsip-apps/src/test-pjsua/runall.py
+++ b/pjsip-apps/src/test-pjsua/runall.py
@@ -123,7 +123,7 @@ for t in tests:
print " ok [" + str(dur) + "s]"
tests_cnt += 1
-if failed_cnt == 0:
+if fails_cnt == 0:
print "All " + str(tests_cnt) + " tests completed successfully"
else:
print str(tests_cnt) + " tests completed, " + str(fails_cnt) + " test(s) failed"