Skip to content

Commit 5c54872

Browse files
committed
cleanup
1 parent c45c8ad commit 5c54872

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

tests/gtest_reactive.cpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
#include <gtest/gtest.h>
22
#include "behaviortree_cpp/bt_factory.h"
33
#include "test_helper.hpp"
4-
#include "behaviortree_cpp/loggers/bt_cout_logger.h"
54

65
using BT::NodeStatus;
76
using std::chrono::milliseconds;
87

98
TEST(Reactive, RunningChildren)
109
{
11-
1210
static const char* reactive_xml_text = R"(
1311
<root BTCPP_format="4" >
1412
<BehaviorTree ID="MainTree">
@@ -84,12 +82,7 @@ TEST(Reactive, Issue587)
8482
RegisterTestTick(factory, "Test", counters);
8583

8684
auto tree = factory.createTreeFromText(reactive_xml_text);
87-
BT::StdCoutLogger logger(tree);
88-
89-
// for(int i=0; i<5; i++)
90-
{
91-
tree.tickWhileRunning();
92-
}
85+
tree.tickWhileRunning();
9386

9487
ASSERT_EQ(counters[0], 1);
9588
}

0 commit comments

Comments
 (0)