Remove unnecessary debug code (#5523)

diff --git a/test/opt/type_manager_test.cpp b/test/opt/type_manager_test.cpp
index cb30171..946f06c 100644
--- a/test/opt/type_manager_test.cpp
+++ b/test/opt/type_manager_test.cpp
@@ -944,15 +944,12 @@
   std::vector<std::unique_ptr<Type>> types = GenerateAllTypes();
   uint32_t id = 1u;
   for (auto& t : types) {
-    std::cout << ". id " << id << std::endl;
     context->get_type_mgr()->RegisterType(id, *t);
     EXPECT_EQ(*t, *context->get_type_mgr()->GetType(id));
   }
-  std::cout << "clear" << id << std::endl;
   types.clear();
 
   for (; id > 0; --id) {
-    std::cout << ". remove id " << id << std::endl;
     context->get_type_mgr()->RemoveId(id);
     EXPECT_EQ(nullptr, context->get_type_mgr()->GetType(id));
   }