| Index: chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| diff --git a/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc b/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| index 88f2027eb71af5ef8ccc6fb8905c8330ed153727..600b48569eaf556cbf13e4ee9cced03836ea4db1 100644
|
| --- a/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| +++ b/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| @@ -43,7 +43,9 @@ class GDataWapiOperationsTest : public testing::Test {
|
| GDataWapiOperationsTest()
|
| : ui_thread_(content::BrowserThread::UI, &message_loop_),
|
| file_thread_(content::BrowserThread::FILE),
|
| - io_thread_(content::BrowserThread::IO) {
|
| + io_thread_(content::BrowserThread::IO),
|
| + test_server_(content::BrowserThread::GetMessageLoopProxyForThread(
|
| + content::BrowserThread::IO)) {
|
| }
|
|
|
| virtual void SetUp() OVERRIDE {
|
| @@ -81,7 +83,7 @@ class GDataWapiOperationsTest : public testing::Test {
|
| }
|
|
|
| virtual void TearDown() OVERRIDE {
|
| - test_server_.ShutdownAndWaitUntilComplete();
|
| + EXPECT_TRUE(test_server_.ShutdownAndWaitUntilComplete());
|
| request_context_getter_ = NULL;
|
| }
|
|
|
|
|