Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and Allen Winter committed Apr 2, 2024
1 parent 63d0a88 commit b80c89c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/tests/test_scxmlexport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ void ScxmlExportTest::testSimpleStateMachine()
QStringList stateMachineIds = query(output, "doc($input)/scxml/@name/string()");
QCOMPARE(stateMachineIds, QStringList() << "root");
QStringList stateIds = query(output, "doc($input)/scxml/state/@id/string()");
QCOMPARE(stateIds, QStringList() << "s1"
<< "s2");
QCOMPARE(stateIds, QStringList() << "s1" << "s2");
QStringList initialStateIds = query(output, "doc($input)/scxml/@initial/string()");
QCOMPARE(initialStateIds, QStringList() << "s1");
QStringList transitions = query(output, "doc($input)/scxml/state[@id='s1']/transition/@event/string()");
Expand Down

0 comments on commit b80c89c

Please sign in to comment.