| Index: net/websockets/websocket_stream_test.cc
|
| diff --git a/net/websockets/websocket_stream_test.cc b/net/websockets/websocket_stream_test.cc
|
| index fcafedc86283bf0d372d4dfcc09f541007b99809..091c28db1635b07a638324ea13770f0c394070f0 100644
|
| --- a/net/websockets/websocket_stream_test.cc
|
| +++ b/net/websockets/websocket_stream_test.cc
|
| @@ -325,11 +325,13 @@ class WebSocketStreamCreateUMATest : public ::testing::Test {
|
|
|
| // Confirm that the basic case works as expected.
|
| TEST_F(WebSocketStreamCreateTest, SimpleSuccess) {
|
| + EXPECT_FALSE(url_request_);
|
| CreateAndConnectStandard("ws://localhost/", "localhost", "/",
|
| NoSubProtocols(), LocalhostOrigin(), LocalhostUrl(),
|
| "", "", "");
|
| EXPECT_FALSE(request_info_);
|
| EXPECT_FALSE(response_info_);
|
| + EXPECT_TRUE(url_request_);
|
| WaitUntilConnectDone();
|
| EXPECT_FALSE(has_failed());
|
| EXPECT_TRUE(stream_);
|
|
|