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

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 1470713003: Landing Recent QUIC changes until and including Mon Nov 16 14:15:48 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback fixes in quic_connection.cc, quic_connection_test.cc and quic_server_bin.cc. Created 5 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
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index 300392908e1e405c6a0f9a7ec65864abce2d0776..ed2327c8a985b314a261345eb4f755e8541d4fc7 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -438,8 +438,8 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> {
}
void AddToCache(StringPiece path, int response_code, StringPiece body) {
- QuicInMemoryCache::GetInstance()->AddSimpleResponse("www.google.com", path,
- response_code, body);
+ QuicInMemoryCache::GetInstance()->AddSimpleResponse(
+ "www.google.com", path, response_code, body);
}
void SetPacketLossPercentage(int32 loss) {
@@ -1379,7 +1379,6 @@ TEST_P(EndToEndTest, MaxStreamsUberTest) {
int max_streams = 100;
AddToCache("/large_response", 200, large_body);
- ;
client_->client()->WaitForCryptoHandshakeConfirmed();
SetPacketLossPercentage(10);

Powered by Google App Engine
This is Rietveld 408576698