And the rest. OM is now clean again.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@911 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-08-07 12:44:52 +00:00
parent 959d80bb07
commit 89be8b4518
16 changed files with 165 additions and 165 deletions

View File

@@ -94,7 +94,7 @@ TEST_F(OpenMeshSplitCopyTriangleMesh, SplitCopyTriangleMesh) {
Mesh::FaceIter f_it = mesh_.faces_begin();
Mesh::FaceIter f_end = mesh_.faces_end();
for (; f_it != f_end; ++f_it)
EXPECT_EQ(999, mesh_.property(fprop_int, f_it)) << "Different Property value";
EXPECT_EQ(999, mesh_.property(fprop_int, *f_it)) << "Different Property value";
}
/* splits a face that has a property in a poly mesh with split_copy
@@ -142,7 +142,7 @@ TEST_F(OpenMeshSplitCopyPolyMesh, SplitCopyPolymesh) {
PolyMesh::FaceIter f_it = mesh_.faces_begin();
PolyMesh::FaceIter f_end = mesh_.faces_end();
for (; f_it != f_end; ++f_it)
EXPECT_EQ(999, mesh_.property(fprop_int, f_it)) << "Different Property value";
EXPECT_EQ(999, mesh_.property(fprop_int, *f_it)) << "Different Property value";
}