summaryrefslogtreecommitdiffstats
path: root/tests/auto/statemachine
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2016-03-24 12:16:08 +0100
committerUlf Hermann <ulf.hermann@theqtcompany.com>2016-03-26 17:25:40 +0000
commit69b11f636f61a2a51333fe1ef69d5fcdf7ff0b9e (patch)
treeea9da3e27cce3732c92b0fe5376d55b3f9379bb9 /tests/auto/statemachine
parent85adc13ac3e5bb82dc7eeeae17886b5d35fcd77f (diff)
Deduplicate QScxmlStateMachine ctor and remove didChange
The didChange parameter to reachedStableState() is rather confusing as a "true" does not denote that the new state is different from the previous one. It just tells us that at least one microstep was performed. This information is not very useful to users of the API, so let's drop it. Change-Id: Ia59e9ad98d813b151429fa0067ab26d007eb4c26 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'tests/auto/statemachine')
-rw-r--r--tests/auto/statemachine/tst_statemachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/statemachine/tst_statemachine.cpp b/tests/auto/statemachine/tst_statemachine.cpp
index 9ee9aa4..913ec86 100644
--- a/tests/auto/statemachine/tst_statemachine.cpp
+++ b/tests/auto/statemachine/tst_statemachine.cpp
@@ -110,7 +110,7 @@ void tst_StateMachine::activeStateNames()
QScopedPointer<QScxmlStateMachine> stateMachine(QScxmlStateMachine::fromFile(scxmlFileName));
QVERIFY(!stateMachine.isNull());
- QSignalSpy stableStateSpy(stateMachine.data(), SIGNAL(reachedStableState(bool)));
+ QSignalSpy stableStateSpy(stateMachine.data(), SIGNAL(reachedStableState()));
stateMachine->init();
stateMachine->start();