aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/controls/data/tst_busyindicator.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/controls/data/tst_busyindicator.qml b/tests/auto/controls/data/tst_busyindicator.qml
index e4f07a8a..66628a24 100644
--- a/tests/auto/controls/data/tst_busyindicator.qml
+++ b/tests/auto/controls/data/tst_busyindicator.qml
@@ -57,9 +57,9 @@ TestCase {
function test_running() {
var control = busyIndicator.createObject(testCase)
- compare(control.running, false)
- control.running = true
compare(control.running, true)
+ control.running = false
+ compare(control.running, false)
control.destroy()
}
}