Remove ResumptionAttempted assertion in TlsServerHandshakerTest.ResumptionWithPlaceholderTicket

This is a bit of a mess. QUICHE started sending a placeholder ticket when ticket encryption failed, because it used to return an empty string, which was not actually valid. However, the flag was not consistently enabled, so sometimes the test ran with the old empty string.

BoringSSL happened not to notice, but newer BoringSSL clients catch this. However, newer BoringSSL servers, as of https://boringssl.googlesource.com/boringssl/+/c59bf8bf189dcbde868e04efcd53b705ed155231, now also support empty string as a signal to skip sending a ticket. That is actually the ideal behavior for QUICHE in this situation.

However, the tests actually reject the ideal behavior because they assert that `ResumptionAttempted()` is true. Remove the assertion so that QUICHE, with the flag on or off, is compatible with the newest BoringSSL.

PiperOrigin-RevId: 698517697
diff --git a/quiche/quic/core/tls_server_handshaker_test.cc b/quiche/quic/core/tls_server_handshaker_test.cc
index 855d092..ca00b64 100644
--- a/quiche/quic/core/tls_server_handshaker_test.cc
+++ b/quiche/quic/core/tls_server_handshaker_test.cc
@@ -809,16 +809,16 @@
   EXPECT_FALSE(server_stream()->IsResumption());
   EXPECT_FALSE(server_stream()->ResumptionAttempted());
 
-  // Now do another handshake. It should end up with a full handshake because
-  // the placeholder ticket is undecryptable.
+  // Now do another handshake. It should end up with a full handshake. When the
+  // placeholder ticket is enabled, it will be undecryptable. When it is
+  // disabled, newer BoringSSL servers will skip sending a ticket altogether, so
+  // the client will not even attempt resumption.
   InitializeServer();
   InitializeFakeClient();
   CompleteCryptoHandshake();
   ExpectHandshakeSuccessful();
   EXPECT_FALSE(client_stream()->IsResumption());
   EXPECT_FALSE(server_stream()->IsResumption());
-  EXPECT_NE(server_stream()->ResumptionAttempted(),
-            GetParam().disable_resumption);
 }
 
 TEST_P(TlsServerHandshakerTest, AdvanceHandshakeDuringAsyncDecryptCallback) {