Revert "Update tests for BoringSSL roll."

There is no way to indicate in the Java language that a TLS extension
should be used instead of the pseudo-ciphersuite for RFC 5746 operation.
Instead we should use the presence of the pseudo-ciphersuite in the
enabled list to enable the TLS extension.

Therefore we should revert the test expectation and allow the
TLS_EMPTY_RENEGOTIATION_INFO_SCSV pseudo-ciphersuite to be in enabled
list.

This reverts commit 5894fb79880aa4fb8fe42963234c2bba599ce1bb.

Bug: 24602368
diff --git a/support/src/test/java/libcore/java/security/StandardNames.java b/support/src/test/java/libcore/java/security/StandardNames.java
index bbf6f75..f7b8337 100644
--- a/support/src/test/java/libcore/java/security/StandardNames.java
+++ b/support/src/test/java/libcore/java/security/StandardNames.java
@@ -942,7 +942,8 @@
                             "TLS_RSA_WITH_AES_256_GCM_SHA384",
                             "TLS_RSA_WITH_AES_128_CBC_SHA",
                             "TLS_RSA_WITH_AES_256_CBC_SHA",
-                            "SSL_RSA_WITH_RC4_128_SHA");
+                            "SSL_RSA_WITH_RC4_128_SHA",
+                            CIPHER_SUITE_SECURE_RENEGOTIATION);
 
     // NOTE: This list needs to be kept in sync with Javadoc of javax.net.ssl.SSLSocket and
     // javax.net.ssl.SSLEngine.