From 33147848dcc5f97da2a3c9d2f5cb48289c46f364 Mon Sep 17 00:00:00 2001 From: "verwaest@chromium.org" Date: Tue, 17 Jul 2012 16:00:00 +0000 Subject: [PATCH] Fix presubmit failure in r12107. Review URL: https://chromiumcodereview.appspot.com/10780035 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12108 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/cctest/test-api.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc index 9c4491080c..9832c98ce2 100644 --- a/test/cctest/test-api.cc +++ b/test/cctest/test-api.cc @@ -10973,8 +10973,8 @@ TEST(SetFunctionEntryHook) { // Verify that entry hooking is now disabled. RunLoopInNewEnv(); - CHECK(0u == bar_count); - CHECK(0u == foo_count); + CHECK_EQ(0u, bar_count); + CHECK_EQ(0u, foo_count); }