Title: [220487] trunk/Tools
Revision
220487
Author
wei...@apple.com
Date
2017-08-09 15:40:53 -0700 (Wed, 09 Aug 2017)

Log Message

Update for https://bugs.webkit.org/show_bug.cgi?id=175244.

Remove one addition of null Function test.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (220486 => 220487)


--- trunk/Tools/ChangeLog	2017-08-09 22:36:04 UTC (rev 220486)
+++ trunk/Tools/ChangeLog	2017-08-09 22:40:53 UTC (rev 220487)
@@ -1,3 +1,9 @@
+2017-08-09  Sam Weinig  <s...@webkit.org>
+
+        Update for https://bugs.webkit.org/show_bug.cgi?id=175244.
+
+        Remove one addition of null Function test.
+
 2017-08-09  Jonathan Bedard  <jbed...@apple.com>
 
         Allow nested timeouts in webkitpy

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/Function.cpp (220486 => 220487)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/Function.cpp	2017-08-09 22:36:04 UTC (rev 220486)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/Function.cpp	2017-08-09 22:40:53 UTC (rev 220487)
@@ -140,9 +140,6 @@
 TEST(WTF_Function, Basics)
 {
     Function<unsigned()> a;
-    EXPECT_FALSE(static_cast<bool>(a));
-    EXPECT_EQ(0U, a());
-
     a = [] {
         return 1U;
     };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to