Skip to content

Commit

Permalink
Fix crash.
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Feb 5, 2025
1 parent 6ba28bd commit 0b10c7b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,10 @@ TEST_CASE("[Modules][GoalTaskPlanner] run_lazy_lookahead") {
}

TEST_CASE("[Modules][GoalTaskPlanner] Multigoal") {
Ref<Plan> planner = Ref<Plan>(memnew(Plan));
Ref<Domain> the_domain = Ref<Domain>(memnew(Domain));
Ref<Plan> planner;
planner.instantiate();
Ref<Domain> the_domain;
the_domain.instantiate();
Dictionary state;
before_each(state, planner, the_domain);
Dictionary goal_state = state.duplicate(true);
Expand Down

0 comments on commit 0b10c7b

Please sign in to comment.