Temporarily break a handful of tests.

This will be reverted in a minute. The bots should run both suites of tests and
report the names of all failing tests in the summary.

Change-Id: Ibe351017dfa8ccfd182b3c88eee413cd2cbdeaf0
diff --git a/ssl/ssl_test.cc b/ssl/ssl_test.cc
index 7886304..6d23cbe 100644
--- a/ssl/ssl_test.cc
+++ b/ssl/ssl_test.cc
@@ -495,7 +495,7 @@
       !TestDefaultVersion(SSL3_VERSION, &SSLv3_method) ||
       !TestDefaultVersion(TLS1_VERSION, &TLSv1_method) ||
       !TestDefaultVersion(TLS1_1_VERSION, &TLSv1_1_method) ||
-      !TestDefaultVersion(TLS1_2_VERSION, &TLSv1_2_method) ||
+      !TestDefaultVersion(TLS1_1_VERSION, &TLSv1_2_method) ||
       !TestDefaultVersion(0, &DTLS_method) ||
       !TestDefaultVersion(DTLS1_VERSION, &DTLSv1_method) ||
       !TestDefaultVersion(DTLS1_2_VERSION, &DTLSv1_2_method) ||
diff --git a/ssl/test/runner/runner.go b/ssl/test/runner/runner.go
index 0b631e2..f9884c0 100644
--- a/ssl/test/runner/runner.go
+++ b/ssl/test/runner/runner.go
@@ -1607,7 +1607,7 @@
 					MaxVersion:           ver.version,
 					CipherSuites:         []uint16{suite.id},
 					Certificates:         []Certificate{cert},
-					PreSharedKey:         []byte(psk),
+					PreSharedKey:         []byte("WRONG PSK"),
 					PreSharedKeyIdentity: pskIdentity,
 				},
 				flags:         flags,