Fix error in TaskTest.PostDelayedTask1 test.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1513 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-11-11 16:57:20 +00:00
parent 133e06c50a
commit 81f336f4bb
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ TEST(TaskTest, PostTask1) {
TEST(TaskTest, PostDelayedTask1) {
bool ran_test = false;
CefPostTask(TID_UI, NewCefRunnableFunction(&PostDelayedTask2, &ran_test));
CefPostTask(TID_UI, NewCefRunnableFunction(&PostDelayedTask1, &ran_test));
WaitForThread(TID_UI);
EXPECT_TRUE(ran_test);
}