diff --git a/tests/UtilitiesTests.cpp b/tests/UtilitiesTests.cpp index 2dabe5bd0ae1c575d7721d9774879037319bfd0f..5473dc550c9c1e7bd0828fcb49a39aea5c88ca28 100644 --- a/tests/UtilitiesTests.cpp +++ b/tests/UtilitiesTests.cpp @@ -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); }