Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
hevake committed Mar 14, 2024
1 parent cabdb94 commit 8b31cab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/flow/actions/composite_action_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ TEST(CompositeAction, ChildBlock) {
virtual bool isReady() const { return true; }
virtual void onStart() override { block(1); }
virtual void onResume() override { finish(true); }
};
};

class ParentAction : public CompositeAction {
public:
Expand Down
2 changes: 1 addition & 1 deletion modules/flow/actions/if_else_action_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ TEST(IfElseAction, BlockOnIf) {
virtual bool isReady() const { return true; }
virtual void onStart() override { block(1); }
virtual void onResume() override { finish(true); }
};
};

auto loop = event::Loop::New();
SetScopeExitAction([loop] { delete loop; });
Expand Down

0 comments on commit 8b31cab

Please sign in to comment.