Skip to content

Commit

Permalink
disable prints in test
Browse files Browse the repository at this point in the history
  • Loading branch information
artivis committed Aug 19, 2019
1 parent 253fec2 commit 20301e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/common_tester.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,11 +314,11 @@ class CommonTester : public ::testing::Test

LieGroup interp = interpolate(state, state_other, 0, method);

EXPECT_MANIF_NEAR(state, interp, tol_) << i;
EXPECT_MANIF_NEAR(state, interp, tol_); // @todo(artivis) Fix msvc << double(i);

interp = interpolate(state, state_other, 1, method);

EXPECT_MANIF_NEAR(state_other, interp, tol_) << i;
EXPECT_MANIF_NEAR(state_other, interp, tol_); // @todo(artivis) Fix msvc << double(i);
}
}

Expand Down

0 comments on commit 20301e2

Please sign in to comment.