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

Unified Diff: net/http/http_network_transaction_spdy3_unittest.cc

Issue 10448083: Fix out of order SYN_STEAM frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix willchan's comments Created 8 years, 6 months 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
Index: net/http/http_network_transaction_spdy3_unittest.cc
diff --git a/net/http/http_network_transaction_spdy3_unittest.cc b/net/http/http_network_transaction_spdy3_unittest.cc
index 36f0b2b947d95ac6b36d44af75c46cec9479cbb6..4cf69d565cbdef267334be400e2c9799f11e9458 100644
--- a/net/http/http_network_transaction_spdy3_unittest.cc
+++ b/net/http/http_network_transaction_spdy3_unittest.cc
@@ -4944,8 +4944,8 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthSpdyProxy) {
MockWrite spdy_writes[] = {
CreateMockWrite(*req, 0, ASYNC),
- CreateMockWrite(*connect2, 2),
- CreateMockWrite(*rst, 3, ASYNC),
+ CreateMockWrite(*rst, 2, ASYNC),
+ CreateMockWrite(*connect2, 3),
CreateMockWrite(*wrapped_get, 5)
};

Powered by Google App Engine
This is Rietveld 408576698