Skip to content

Commit ecbc140

Browse files
committed
tests: Trying to figure out error on CI
1 parent cb75dd9 commit ecbc140

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/scxml/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def pytest_generate_tests(metafunc):
4545
id=str(testcase_path.relative_to(TESTCASES_DIR)),
4646
marks=compute_testcase_marks(testcase_path),
4747
)
48-
for testcase_path in sorted(TESTCASES_DIR.glob("**/*.scxml"))
48+
for testcase_path in TESTCASES_DIR.glob("**/*.scxml")
4949
if "sub" not in testcase_path.name
5050
],
5151
)

tests/scxml/test_microwave.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def microwave_cls(self):
6969
class MicroWave(StateChart):
7070
door_closed: bool = True
7171

72-
class oven(State.Compound, name="Microwave oven", parallel=True):
72+
class oven(State.Parallel, name="Microwave oven"):
7373
class engine(State.Compound):
7474
off = State(initial=True)
7575

0 commit comments

Comments
 (0)