diff -r 86f3ea771e24 -r ed48023d1d85 vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/VMTest.java --- a/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/VMTest.java Thu Dec 20 21:54:33 2012 +0100 +++ b/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/VMTest.java Sun Dec 23 17:02:34 2012 +0100 @@ -26,7 +26,7 @@ import java.util.logging.Level; import java.util.logging.Logger; import javax.script.Invocable; -import org.apidesign.bck2brwsr.launcher.Bck2BrwsrLauncher; +import org.apidesign.bck2brwsr.launcher.MethodInvocation; import org.testng.Assert; import org.testng.ITest; import org.testng.annotations.Factory; @@ -138,11 +138,11 @@ @Test(groups = "run") public void executeCode() throws Throwable { if (type == 1) { - Bck2BrwsrLauncher.MethodInvocation c = (Bck2BrwsrLauncher.MethodInvocation) inst; + MethodInvocation c = (MethodInvocation) inst; JS.exec(); value = c.toString(); } else if (type == 2) { - Bck2BrwsrLauncher.MethodInvocation c = (Bck2BrwsrLauncher.MethodInvocation) inst; + MethodInvocation c = (MethodInvocation) inst; BROWSER.exec(); value = c.toString(); } else {