| Index: net/spdy/spdy_network_transaction_unittest.cc
|
| diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc
|
| index 1b6234fe45ca6b72366e10014e5052061346a7e5..a1acdf39ba59ed0d7c1b378ec171feccfa20502b 100644
|
| --- a/net/spdy/spdy_network_transaction_unittest.cc
|
| +++ b/net/spdy/spdy_network_transaction_unittest.cc
|
| @@ -22,6 +22,7 @@
|
| #include "net/base/test_data_directory.h"
|
| #include "net/base/upload_bytes_element_reader.h"
|
| #include "net/base/upload_file_element_reader.h"
|
| +#include "net/http/http_auth_scheme.h"
|
| #include "net/http/http_network_session_peer.h"
|
| #include "net/http/http_network_transaction.h"
|
| #include "net/http/http_server_properties.h"
|
| @@ -4989,7 +4990,7 @@ TEST_P(SpdyNetworkTransactionTest, SpdyBasicAuth) {
|
| AuthChallengeInfo* auth_challenge = response_start->auth_challenge.get();
|
| ASSERT_TRUE(auth_challenge != NULL);
|
| EXPECT_FALSE(auth_challenge->is_proxy);
|
| - EXPECT_EQ("basic", auth_challenge->scheme);
|
| + EXPECT_EQ(kBasicAuthScheme, auth_challenge->scheme);
|
| EXPECT_EQ("MyRealm", auth_challenge->realm);
|
|
|
| // Restart with a username/password.
|
|
|