We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c2efef + 67d85cb commit d4d6514Copy full SHA for d4d6514
tests/gtest_blackboard.cpp
@@ -423,9 +423,9 @@ class ComparisonNode : public BT::ConditionNode
423
if( (inputOperator == "==" && firstValue == secondValue) ||
424
(inputOperator == "!=" && firstValue != secondValue) ||
425
(inputOperator == "<=" && firstValue <= secondValue) ||
426
- (inputOperator == ">=" && firstValue <= secondValue) ||
+ (inputOperator == ">=" && firstValue >= secondValue) ||
427
(inputOperator == "<" && firstValue < secondValue) ||
428
- (inputOperator == ">" && firstValue < secondValue) )
+ (inputOperator == ">" && firstValue > secondValue) )
429
{
430
return BT::NodeStatus::SUCCESS;
431
}
0 commit comments