diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-27 06:41:50 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-27 06:41:50 +0000 |
commit | ab0d0371e8f919411a2b2dc3364f328c9ec97c43 (patch) | |
tree | 9db9f80919146c9a2fe7b2ae413c2b4628de8f2a | |
parent | 58273075f8cfb37ebfb3c71c3917c33a3d4cc3b5 (diff) | |
download | chromium_src-ab0d0371e8f919411a2b2dc3364f328c9ec97c43.zip chromium_src-ab0d0371e8f919411a2b2dc3364f328c9ec97c43.tar.gz chromium_src-ab0d0371e8f919411a2b2dc3364f328c9ec97c43.tar.bz2 |
Again, call RunAllPending to flush out the pending tasks. This is done to make
Purify happy.
"wack a mole"
TBR=erikkay
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1432 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/tabs/tab_strip_model_unittest.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/tabs/tab_strip_model_unittest.cc b/chrome/browser/tabs/tab_strip_model_unittest.cc index 9565f67..ca64a92 100644 --- a/chrome/browser/tabs/tab_strip_model_unittest.cc +++ b/chrome/browser/tabs/tab_strip_model_unittest.cc @@ -96,6 +96,9 @@ class TabStripModelTest : public testing::Test { // Clean up test directory ASSERT_TRUE(file_util::Delete(test_dir_, true)); ASSERT_FALSE(file_util::PathExists(test_dir_)); + + // Flush the message loop to make Purify happy. + message_loop_.RunAllPending(); } protected: |