fixed pose3 test for new print format

release/4.3a0
Varun Agrawal 2020-05-07 02:32:09 -04:00
parent b48456b871
commit 4e564f1aba
1 changed files with 1 additions and 1 deletions

View File

@ -1021,7 +1021,7 @@ TEST(Pose3, print) {
std::cout.rdbuf(oldbuf);
// Get substring corresponding to translation part
std::string actual = redirectStream.str().substr(47, 11);
std::string actual = redirectStream.str().substr(38, 11);
CHECK_EQUAL(expected.str(), actual);
}