Title: [212444] trunk/LayoutTests
Revision
212444
Author
utatane....@gmail.com
Date
2017-02-16 10:20:25 -0800 (Thu, 16 Feb 2017)

Log Message

Unreviewed, fix r212438 test
https://bugs.webkit.org/show_bug.cgi?id=167457

* inspector/controller/runtime-controller-import.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (212443 => 212444)


--- trunk/LayoutTests/ChangeLog	2017-02-16 18:10:16 UTC (rev 212443)
+++ trunk/LayoutTests/ChangeLog	2017-02-16 18:20:25 UTC (rev 212444)
@@ -1,3 +1,10 @@
+2017-02-16  Yusuke Suzuki  <utatane....@gmail.com>
+
+        Unreviewed, fix r212438 test
+        https://bugs.webkit.org/show_bug.cgi?id=167457
+
+        * inspector/controller/runtime-controller-import.html:
+
 2017-02-16  Javier Fernandez  <jfernan...@igalia.com>
 
         [GTK] Unreviewed test gardening

Modified: trunk/LayoutTests/inspector/controller/runtime-controller-import.html (212443 => 212444)


--- trunk/LayoutTests/inspector/controller/runtime-controller-import.html	2017-02-16 18:10:16 UTC (rev 212443)
+++ trunk/LayoutTests/inspector/controller/runtime-controller-import.html	2017-02-16 18:20:25 UTC (rev 212444)
@@ -30,10 +30,10 @@
                 return testSource("await import('./not-found.js')");
             })
             .then(() => {
-                testSource("await import('./resources/cocoa.js').then((cocoa) => { console.log(`${cocoa.name} is ${cocoa.taste}.`); })");
+                return testSource("await import('./resources/cocoa.js').then((cocoa) => { console.log(`${cocoa.name} is ${cocoa.taste}.`); })");
             })
             .then(() => {
-                testSource("await import('./resources/drink.js').then((ns) => { console.log(`${ns.Cocoa.name} is ${ns.Cocoa.taste}. ${ns.Cappuccino.name} is ${ns.Cappuccino.taste}.`); })");
+                return testSource("await import('./resources/drink.js').then((ns) => { console.log(`${ns.Cocoa.name} is ${ns.Cocoa.taste}. ${ns.Cappuccino.name} is ${ns.Cappuccino.taste}.`); })");
             })
             .then(resolve);
         }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to