Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java')
-rwxr-xr-xbundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java b/bundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java
index 2eb207297..104bdef2d 100755
--- a/bundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java
+++ b/bundles/org.eclipse.equinox.console.tests/src/org/eclipse/equinox/console/telnet/TelnetCommandWithConfigAdminTests.java
@@ -85,7 +85,7 @@ public class TelnetCommandWithConfigAdminTests {
EasyMock.replay(context);
TelnetCommand command = new TelnetCommand(processor, context);
- command.start();
+ command.startService();
Dictionary props = new Hashtable();
props.put("port", TELNET_PORT);
props.put("host", HOST);
@@ -165,7 +165,7 @@ public class TelnetCommandWithConfigAdminTests {
EasyMock.replay(context);
TelnetCommand command = new TelnetCommand(processor, context);
- command.start();
+ command.startService();
Dictionary props = new Hashtable();
props.put("port", TELNET_PORT);
props.put("host", HOST);

Back to the top