Skip to content

Commit

Permalink
(fix) Fixes ChildComponent class in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkabtoul committed Jan 28, 2025
1 parent 1455a3c commit 7c7d476
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/actions_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ def __init__(
**kwargs,
)

def _execution_step(self):
return

@component_action
def test_action(self, **_) -> None:
global component_action_py_event
Expand Down
3 changes: 3 additions & 0 deletions test/component/timed_run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ def __init__(
**kwargs,
)

def _execution_step(self):
return

def _execute_once(self):
global execution_once_py_event
execution_once_py_event.set()
Expand Down

0 comments on commit 7c7d476

Please sign in to comment.