Skip to content

Commit

Permalink
fix faulty integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
joergbrech committed Jan 9, 2024
1 parent 69da360 commit 0f68791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integrationtests/testWingCellSpar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ TEST_F(WingCellRibSpar, bug864)
tigl::CCPACSWingCell& cell = componentSegment.GetStructure()->GetUpperShell().GetCell(2);


const std::pair<double, double> arr[] = { DP(0.2, 0.3), DP(0.95, 0.4), DP(0.2, 0.72), DP(0.95, 0.75) };
const std::pair<double, double> arr[] = { DP(0.2, 0.3), DP(0.95, 0.4), DP(0.2, 0.72), DP(0.95, 0.76) };
std::vector< std::pair<double, double> > expectedEtaXsi (arr, arr + sizeof(arr) / sizeof(arr[0]));
checkCellEtaXsis(cell, expectedEtaXsi, 1.E-2);
checkCellEtaXsis(cell, expectedEtaXsi, 1.E-3);


TopoDS_Shape cellGeom = cell.GetSkinGeometry();
Expand Down

0 comments on commit 0f68791

Please sign in to comment.