Skip to content

Commit bee8635

Browse files
jhlegarretahjmjohnson
authored andcommitted
BUG: Set mesh to join facet function in split facet function test
Set mesh to join facet function in split facet function test. Avoids a `No mesh present.` failure when evaluating the deleted edge. Raised for example in: https://open.cdash.org/test/645786246
1 parent 7866523 commit bee8635

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/Core/QuadEdgeMesh/test/itkQuadEdgeMeshEulerOperatorSplitFaceTest.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ itkQuadEdgeMeshEulerOperatorSplitFaceTest(int, char *[])
9696
}
9797
std::cout << "OK" << std::endl;
9898

99-
auto joinFacet = JoinFacet::New();
99+
auto joinFacet = JoinFacet::New();
100+
joinFacet->SetInput(mesh);
100101
QEType * DeletedEdge = mesh->FindEdge(12, 7);
101102
QEType * G = DeletedEdge->GetSym()->GetLprev();
102103
QEType * H = joinFacet->Evaluate(DeletedEdge);

0 commit comments

Comments
 (0)