Ubuntu Pastebin

Paste from root at Thu, 22 Jun 2017 11:54:08 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
diff --git a/TestCase.qml b/TestCase.qml
index 18c70e1..7d473b1 100644
--- a/TestCase.qml
+++ b/TestCase.qml
@@ -1775,7 +1775,7 @@ Item {
                     var table = qtest_testCaseResult
                     var haveData = false
                     qtest_results.initTestTable()
-                    for (var index in table) {
+                    for (var index = 0; index < table.length; index++) {
                         haveData = true
                         var row = table[index]
                         if (!row.tag)
Download as text