summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/qmlauto/selftests/tst_selftests.qml3
-rw-r--r--tests/qmlexample/tst_basic.qml2
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/qmlauto/selftests/tst_selftests.qml b/tests/qmlauto/selftests/tst_selftests.qml
index c26250d..bcf53b9 100644
--- a/tests/qmlauto/selftests/tst_selftests.qml
+++ b/tests/qmlauto/selftests/tst_selftests.qml
@@ -52,6 +52,7 @@ TestCase {
property string failmsg: "cleaned"
property string actual: ""
property string expected: ""
+ property variant functionsToRun: []
function fail(msg, file, line) {
failmsg = msg
@@ -208,7 +209,7 @@ TestCase {
testCase.compare("abcdef", 42)
} catch (e) {
compare(e.message, "QtQuickTest::fail")
- compare(functions.failmsg, "")
+ compare(functions.failmsg, "Compared values are not the same")
compare(functions.actual, "abcdef")
compare(functions.expected, "42")
caught = true
diff --git a/tests/qmlexample/tst_basic.qml b/tests/qmlexample/tst_basic.qml
index d905d9b..07d5a9d 100644
--- a/tests/qmlexample/tst_basic.qml
+++ b/tests/qmlexample/tst_basic.qml
@@ -58,7 +58,7 @@ TestCase {
}
function test_expecting() {
- expectFail("this is the fail we wanted")
+ expectFail("", "this is the fail we wanted")
verify(false)
}