[flang] Remove incorrect unit test

Any test of the team_number intrinsic function will apparently
fail because it doesn't have access to ISO_FORTRAN_ENV when
called.

GitOrigin-RevId: 18e63289358f50143fe4bc59942f3959bdffa772
diff --git a/unittests/Evaluate/intrinsics.cpp b/unittests/Evaluate/intrinsics.cpp
index 45e47af..678f0da 100644
--- a/unittests/Evaluate/intrinsics.cpp
+++ b/unittests/Evaluate/intrinsics.cpp
@@ -294,7 +294,11 @@
       .Push(Const(Scalar<Real4>{}))
       .DoCall(); // bad type
 
-  TestCall{defaults, table, "team_number"}.DoCall(Int4::GetType());
+  // This test temporarily removed because it requires access to
+  // the ISO_FORTRAN_ENV intrinsic module. This module should to
+  // be loaded (somehow) and the following test reinstated.
+  // TestCall{defaults, table, "team_number"}.DoCall(Int4::GetType());
+
   TestCall{defaults, table, "team_number"}
       .Push(Const(Scalar<Int4>{}))
       .Push(Const(Scalar<Int4>{}))