Title: [208079] branches/safari-602-branch/LayoutTests
Revision
208079
Author
joep...@webkit.org
Date
2016-10-28 16:28:16 -0700 (Fri, 28 Oct 2016)

Log Message

Fix merge r207229. rdar://problem/29007278

* inspector/console/console-log-proxy.html:

Modified Paths

Diff

Modified: branches/safari-602-branch/LayoutTests/ChangeLog (208078 => 208079)


--- branches/safari-602-branch/LayoutTests/ChangeLog	2016-10-28 23:19:06 UTC (rev 208078)
+++ branches/safari-602-branch/LayoutTests/ChangeLog	2016-10-28 23:28:16 UTC (rev 208079)
@@ -1,3 +1,9 @@
+2016-10-28  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix merge r207229. rdar://problem/29007278
+
+        * inspector/console/console-log-proxy.html:
+
 2016-10-27  Mark Lam  <mark....@apple.com>
 
         Merge r207518. rdar://problem/28216050, rdar://problem/28216232

Modified: branches/safari-602-branch/LayoutTests/inspector/console/console-log-proxy.html (208078 => 208079)


--- branches/safari-602-branch/LayoutTests/inspector/console/console-log-proxy.html	2016-10-28 23:19:06 UTC (rev 208078)
+++ branches/safari-602-branch/LayoutTests/inspector/console/console-log-proxy.html	2016-10-28 23:28:16 UTC (rev 208079)
@@ -43,7 +43,7 @@
             InspectorTest.evaluateInPage("triggerProxyConsoleLog()", () => {
                 InspectorTest.evaluateInPage("window.accessedHandlerGet", (error, result) => {
                     let value = WebInspector.RemoteObject.fromPayload(result).value;
-                    InspectorTest.expectEqual(value, false, "Logging Proxy objects should not have triggered get trap.");
+                    InspectorTest.expectThat(value === false, "Logging Proxy objects should not have triggered get trap.");
                     resolve();
                 });
             });
@@ -57,7 +57,7 @@
             InspectorTest.evaluateInPage("triggerProxyAndPrimitiveConsoleLog()", () => {
                 InspectorTest.evaluateInPage("window.accessedHandlerGet", (error, result) => {
                     let value = WebInspector.RemoteObject.fromPayload(result).value;
-                    InspectorTest.expectEqual(value, false, "Logging Proxy objects and primitives should not have triggered get trap.");
+                    InspectorTest.expectThat(value === false, "Logging Proxy objects and primitives should not have triggered get trap.");
                     resolve();
                 });
             });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to