From 6396a04c25995a254fb8685d12d7bdcfdb238157 Mon Sep 17 00:00:00 2001 From: Max Lyon Date: Thu, 15 Oct 2020 13:52:32 +0200 Subject: [PATCH] iterate over all elements in smart handle unittest --- src/Unittests/unittests_smart_handles.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Unittests/unittests_smart_handles.cc b/src/Unittests/unittests_smart_handles.cc index 729d8b3c..eec50a1a 100644 --- a/src/Unittests/unittests_smart_handles.cc +++ b/src/Unittests/unittests_smart_handles.cc @@ -608,10 +608,10 @@ TEST_F(OpenMeshSmartHandles, StatusAccess) mesh_.request_edge_status(); mesh_.request_face_status(); - test_status_fields(mesh_, mesh_.vertices()); - test_status_fields(mesh_, mesh_.edges()); - test_status_fields(mesh_, mesh_.halfedges()); - test_status_fields(mesh_, mesh_.faces()); + test_status_fields(mesh_, mesh_.all_vertices()); + test_status_fields(mesh_, mesh_.all_edges()); + test_status_fields(mesh_, mesh_.all_halfedges()); + test_status_fields(mesh_, mesh_.all_faces()); }