Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1076)

Unified Diff: tests/standalone/io/secure_socket_bad_data_test.dart

Issue 53733003: Don't expect a specific string in a HandshakeException, in secure_socket_bad_data_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/secure_socket_bad_data_test.dart
diff --git a/tests/standalone/io/secure_socket_bad_data_test.dart b/tests/standalone/io/secure_socket_bad_data_test.dart
index 27c6724f51b6b5ba9abbab57c5eae9de2b0fc756..bff3f463d8167bd8ce61ac8c6ae8ff51f9fa5e0c 100644
--- a/tests/standalone/io/secure_socket_bad_data_test.dart
+++ b/tests/standalone/io/secure_socket_bad_data_test.dart
@@ -150,8 +150,6 @@ Future test(bool hostnameInConnect) {
},
onError: (e) {
Expect.isTrue(e is HandshakeException);
- Expect.isTrue(e.toString().contains(
- 'received a record with an incorrect Message Authentication'));
})
.whenComplete(server.close);
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698