Skip to content
Snippets Groups Projects
Commit 25fc4fe9 authored by Jesse Mapel's avatar Jesse Mapel Committed by Kristin
Browse files

Fixed computeDistortedFocalPlaneCoordinates test (#187)

parent c10f6a79
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ TEST(UtilitiesTests, computeDistortedFocalPlaneCoordinates) {
double iTransS[] = {0.0, 0.0, 10.0};
double iTransL[] = {0.0, 10.0, 0.0};
std::tuple<double, double> natFocalPlane;
computeDistortedFocalPlaneCoordinates(0.5, 4, 8, 0.5, 1, 1, iTransS, iTransL, natFocalPlane);
computeDistortedFocalPlaneCoordinates(0.5, 4, 8, 0.5, 1, 0, iTransS, iTransL, natFocalPlane);
EXPECT_DOUBLE_EQ(std::get<0> (natFocalPlane), 0);
EXPECT_DOUBLE_EQ(std::get<1> (natFocalPlane), -0.4);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment