summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-12-07 10:41:17 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-12-07 10:43:18 +1000
commitd44013f256d6e234c82a1386e27dbe9acd853557 (patch)
treeac5c0515e739bf3e334675511323a6da60d49b0f /src
parent88321ef275cdca5936b2a96dd89ca1fc69fe77d5 (diff)
Reset data tag after running test function
Diffstat (limited to 'src')
-rw-r--r--src/imports/testlib/TestCase.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/testlib/TestCase.qml b/src/imports/testlib/TestCase.qml
index f3ce66c..78a42af 100644
--- a/src/imports/testlib/TestCase.qml
+++ b/src/imports/testlib/TestCase.qml
@@ -240,6 +240,7 @@ Item {
row.tag = "row " + index // Must have something
results.dataTag = row.tag
runFunction(prop, row)
+ results.dataTag = ""
}
if (!haveData)
results.warn("no data supplied for " + prop + "() by " + datafunc + "()")
@@ -250,7 +251,6 @@ Item {
}
results.finishTestFunction()
results.skipped = false
- results.dataTag = ""
}
// Run the cleanupTestCase function.