This is an automated email from the ASF dual-hosted git repository. jtulach pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-html4j.git
commit 484c62080173c2de8d1921dfee77381345ba6f8f Author: Jaroslav Tulach <[email protected]> AuthorDate: Sun Feb 17 20:29:25 2019 +0100 engine symbol isn't present in Graal.js engine --- boot-script/src/test/java/net/java/html/boot/script/ScriptsTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/boot-script/src/test/java/net/java/html/boot/script/ScriptsTest.java b/boot-script/src/test/java/net/java/html/boot/script/ScriptsTest.java index d7c8947..9760f65 100644 --- a/boot-script/src/test/java/net/java/html/boot/script/ScriptsTest.java +++ b/boot-script/src/test/java/net/java/html/boot/script/ScriptsTest.java @@ -116,11 +116,9 @@ public class ScriptsTest { Fn.Presenter p = builder.build(); try (Closeable c = Fn.activate(p)) { Object Java = p.defineFn("return typeof Java;").invoke(null); - Object engine = p.defineFn("return typeof engine;").invoke(null); Object Packages = p.defineFn("return typeof Packages;").invoke(null); Object alert = p.defineFn("return typeof alert;").invoke(null); assertEquals(Java, "object", "Java symbol found"); - assertEquals(engine, "object", "Engine symbol found"); assertEquals(Packages, "object", "Packages symbol found"); assertEquals(alert, "function", "alert is defined symbol"); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
