Index: remoting/host/chromoting_host_context_unittest.cc |
diff --git a/remoting/host/chromoting_host_context_unittest.cc b/remoting/host/chromoting_host_context_unittest.cc |
index 6b481d7a18cbc79f5c015a7f7f4a63cc8cc20dfc..827ad37242eea687906e74eb0bce061b0ed9251c 100644 |
--- a/remoting/host/chromoting_host_context_unittest.cc |
+++ b/remoting/host/chromoting_host_context_unittest.cc |
@@ -15,13 +15,11 @@ TEST(ChromotingHostContextTest, StartAndStop) { |
context.Start(); |
EXPECT_TRUE(context.jingle_thread()); |
EXPECT_TRUE(context.main_message_loop()); |
- EXPECT_TRUE(context.capture_message_loop()); |
EXPECT_TRUE(context.encode_message_loop()); |
context.Stop(); |
// Expect all the threads are stopped. |
EXPECT_FALSE(context.main_thread_.IsRunning()); |
- EXPECT_FALSE(context.capture_thread_.IsRunning()); |
EXPECT_FALSE(context.encode_thread_.IsRunning()); |
} |