Loose the expectation of EndToEndTestWithTls.SendAndReceiveCoalescedPackets

gfe-relnote: n/a (test only)
PiperOrigin-RevId: 279348718
Change-Id: I75889e9c057ba586add987093c871100ff66dd26
diff --git a/quic/core/http/end_to_end_test.cc b/quic/core/http/end_to_end_test.cc
index 33c0452..171e036 100644
--- a/quic/core/http/end_to_end_test.cc
+++ b/quic/core/http/end_to_end_test.cc
@@ -687,17 +687,12 @@
   }
   EXPECT_EQ(kFooResponseBody, client_->SendSynchronousRequest("/foo"));
   EXPECT_EQ("200", client_->response_headers()->find(":status")->second);
-  // Verify both endpoints successfully process coalesced packets.
+  // Verify client successfully processes coalesced packets.
   QuicConnectionStats client_stats = GetClientConnection()->GetStats();
   EXPECT_LT(0u, client_stats.num_coalesced_packets_received);
   EXPECT_EQ(client_stats.num_coalesced_packets_processed,
             client_stats.num_coalesced_packets_received);
-  server_thread_->Pause();
-  QuicConnectionStats server_stats = GetServerConnection()->GetStats();
-  EXPECT_LT(0u, server_stats.num_coalesced_packets_received);
-  EXPECT_EQ(server_stats.num_coalesced_packets_processed,
-            server_stats.num_coalesced_packets_received);
-  server_thread_->Resume();
+  // TODO(fayang): verify server successfully processes coalesced packets.
 }
 
 // Simple transaction, but set a non-default ack delay at the client