From 318d035c97e58b3f235bb99e5848ff81fcae8808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 28 Feb 2023 09:39:52 +0100 Subject: [PATCH] Missed two outputs --- src/Unittests/unittests_read_write_PLY.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Unittests/unittests_read_write_PLY.cc b/src/Unittests/unittests_read_write_PLY.cc index b60ff406..85ae5c97 100644 --- a/src/Unittests/unittests_read_write_PLY.cc +++ b/src/Unittests/unittests_read_write_PLY.cc @@ -532,8 +532,6 @@ TEST_F(OpenMeshReadWritePLY, LoadPLYFromMeshLabWithFaceTexCoord) { mesh_.get_property_handle(property, "TextureMapping"); EXPECT_EQ(mesh_.property(property).size(), 2u) << "Wrong texture number"; EXPECT_EQ(mesh_.property(property).count(0), 1u) << "Could not find texture with id 0"; - std::cerr << mesh_.property(property)[0] << std::endl; - std::cerr << mesh_.property(property)[1] << std::endl; EXPECT_TRUE((mesh_.property(property)[0] == std::string("tex_0.jpg"))) << "Wrong texture name"; EXPECT_EQ(mesh_.property(property).count(1), 1u) << "Could not find texture with id 1"; EXPECT_TRUE((mesh_.property(property)[1] == std::string("tex_1.jpg"))) << "Wrong texture name";