We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd568e8 commit 0625e4aCopy full SHA for 0625e4a
localization/landmark_based_localizer/ar_tag_based_localizer/test/test.cpp
@@ -56,7 +56,9 @@ class TestArTagBasedLocalizer : public ::testing::Test
56
TEST_F(TestArTagBasedLocalizer, test_setup) // NOLINT
57
{
58
// Check if the constructor finishes successfully
59
- EXPECT_TRUE(true);
+ // For some unknown reason, the test sometimes fails to terminate normally and results in failure
60
+ // unless a 1-second wait is implemented.
61
+ std::this_thread::sleep_for(std::chrono::seconds(1));
62
}
63
64
int main(int argc, char ** argv)
0 commit comments