langtools/test/jdk/jshell/FailOverExecutionControlTest.java
changeset 41941 a935ac3f5274
parent 39807 ba0ff343d241
child 42969 a48d4f74d322
--- a/langtools/test/jdk/jshell/FailOverExecutionControlTest.java	Fri Nov 04 14:47:25 2016 -0700
+++ b/langtools/test/jdk/jshell/FailOverExecutionControlTest.java	Sun Nov 06 22:50:46 2016 -0800
@@ -33,7 +33,7 @@
 
 import org.testng.annotations.Test;
 import org.testng.annotations.BeforeMethod;
-import jdk.jshell.execution.JDIDefaultExecutionControl;
+import jdk.jshell.execution.JdiDefaultExecutionControl;
 import jdk.jshell.spi.ExecutionControl;
 import jdk.jshell.spi.ExecutionEnv;
 import static jdk.jshell.execution.Util.failOverExecutionControlGenerator;
@@ -47,7 +47,7 @@
         setUp(builder -> builder.executionEngine(failOverExecutionControlGenerator(
                 new AlwaysFailingGenerator(),
                 new AlwaysFailingGenerator(),
-                JDIDefaultExecutionControl.launch())));
+                JdiDefaultExecutionControl.launch())));
     }
 
     class AlwaysFailingGenerator implements ExecutionControl.Generator {