Changeset 188618 in webkit


Ignore:
Timestamp:
Aug 18, 2015 6:25:31 PM (9 years ago)
Author:
Gyuyoung Kim
Message:

Fix conversion-null warning in conversion.cpp of TestWebKitAPI
https://bugs.webkit.org/show_bug.cgi?id=148073

Reviewed by Alexey Proskuryakov.

  • TestWebKitAPI/Tests/WTF/Condition.cpp: Use EXPECT_FALSE instead of EXPECT_EQ.

(TestWebKitAPI::TEST):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r188607 r188618  
     12015-08-18  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        Fix conversion-null warning in conversion.cpp of TestWebKitAPI
     4        https://bugs.webkit.org/show_bug.cgi?id=148073
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * TestWebKitAPI/Tests/WTF/Condition.cpp: Use EXPECT_FALSE instead of EXPECT_EQ.
     9        (TestWebKitAPI::TEST):
     10
    1112015-08-18  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Tools/TestWebKitAPI/Tests/WTF/Condition.cpp

    r188594 r188618  
    251251    lock.unlock();
    252252
    253     EXPECT_EQ(false, result);
     253    EXPECT_FALSE(result);
    254254}
    255255
Note: See TracChangeset for help on using the changeset viewer.