File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -742,7 +742,7 @@ TEST(BlackboardTest, SetBlackboard_ChangeType1)
742
742
const auto entry_ptr = blackboard->getEntry (" other_point" );
743
743
std::this_thread::sleep_for (std::chrono::milliseconds{ 5 });
744
744
// Second tick should throw due to type mismatch
745
- EXPECT_THROW ({ tree.tickExactlyOnce (); }, BT::LogicError);
745
+ EXPECT_THROW ({ tree.tickWhileRunning (); }, BT::LogicError);
746
746
}
747
747
748
748
TEST (BlackboardTest, SetBlackboard_ChangeType2)
@@ -773,7 +773,7 @@ TEST(BlackboardTest, SetBlackboard_ChangeType2)
773
773
const auto entry_ptr = blackboard->getEntry (" other_point" );
774
774
std::this_thread::sleep_for (std::chrono::milliseconds{ 5 });
775
775
// Second tick should throw due to type mismatch
776
- EXPECT_THROW ({ tree.tickExactlyOnce (); }, BT::LogicError);
776
+ EXPECT_THROW ({ tree.tickWhileRunning (); }, BT::LogicError);
777
777
}
778
778
779
779
// Simple Action that updates an instance of Point in the blackboard
You can’t perform that action at this time.
0 commit comments