Skip to content

Commit

Permalink
Merge branch 'ign-gazebo6' into scpeters/merge36
Browse files Browse the repository at this point in the history
  • Loading branch information
scpeters committed Jul 19, 2022
2 parents be7de46 + 44406a9 commit 9a67b5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions test/integration/multiple_servers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include <gtest/gtest.h>

#include <ignition/utils/ExtraTestMacros.hh>

#include "ignition/gazebo/Server.hh"
#include "ignition/gazebo/ServerConfig.hh"

Expand Down
3 changes: 2 additions & 1 deletion test/integration/scene_broadcaster_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ TEST_P(SceneBroadcasterTest, IGN_UTILS_TEST_DISABLED_ON_WIN32(DeletedTopic))

// The id of the deleted entity should have been published
// Note: Only model entities are currently supported for deletion
EXPECT_TRUE(std::find_if(delMsg.data().cbegin(), delMsg.data().cend(),
EXPECT_NE(delMsg.data().cend(),
std::find_if(delMsg.data().cbegin(), delMsg.data().cend(),
[&cylinderModelId](const auto &_val)
{
return _val == cylinderModelId;
Expand Down

0 comments on commit 9a67b5d

Please sign in to comment.