summaryrefslogtreecommitdiffstats
path: root/base/thread_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/thread_unittest.cc')
-rw-r--r--base/thread_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/thread_unittest.cc b/base/thread_unittest.cc
index c1971c2..f11cb8d 100644
--- a/base/thread_unittest.cc
+++ b/base/thread_unittest.cc
@@ -97,8 +97,8 @@ TEST_F(ThreadTest, StopSoon) {
EXPECT_TRUE(a.Start());
EXPECT_TRUE(a.message_loop());
a.StopSoon();
- EXPECT_FALSE(a.message_loop());
a.StopSoon();
+ a.Stop();
EXPECT_FALSE(a.message_loop());
}