-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove deprecations: tock #648
Conversation
Signed-off-by: Carlos Agüero <[email protected]>
Signed-off-by: Carlos Agüero <[email protected]>
CI isn't happy, I'm looking at it... |
test/integration/camera_tracking.cc
Outdated
// Follow | ||
result = false; | ||
executed = node.Request("/gui/follow", req, timeout, rep, result); | ||
EXPECT_TRUE(executed); | ||
EXPECT_TRUE(result); | ||
EXPECT_TRUE(rep.data()); | ||
|
||
msgs::Vector3d reqOffset; | ||
reqOffset.set_x(1.0); | ||
reqOffset.set_y(1.0); | ||
reqOffset.set_z(1.0); | ||
result = false; | ||
executed = node.Request("/gui/follow/offset", reqOffset, timeout, rep, | ||
result); | ||
EXPECT_TRUE(executed); | ||
EXPECT_TRUE(result); | ||
EXPECT_TRUE(rep.data()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of removing, we should update the test to use /gui/track
. I believe the test is failing because we aren't requesting the camera to track the object.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the suggestion, fixed in 5604930.
Signed-off-by: Carlos Agüero <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Carlos! Do you mind to add this deprecation to https://github.com/gazebosim/gz-gui/blob/main/Migration.md please? Otherwise LGTM.
Signed-off-by: Carlos Agüero <[email protected]>
🦟 Bug fix
Perform the tock of the tick-tock cycle and remove / move deprecated code.
Summary
Checklist
codecheck
passed (See contributing)Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining
Signed-off-by
messages.