Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 2c2efef commit 67d85cbCopy full SHA for 67d85cb
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