Merge branch 'master' into lttng_2_0_control_dev
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui.tests / stubs / org / eclipse / linuxtools / lttng / stubs / service / shells / NoSessionNamesShell.java
index de933f0ad8f52490e5979080208e753bb15ae30a..1a4b483b5be02f210cced19f9dcace021ddfbc97 100644 (file)
@@ -11,7 +11,7 @@ public class NoSessionNamesShell extends TestCommandShell {
     @Override
     public ICommandResult executeCommand(String command, IProgressMonitor monitor, boolean checkReturnValue) throws ExecutionException {
         String[] output = new String[1];
-        output[0] = String.valueOf("Error: No Session found");
-        return new CommandResult(1, output);
+        output[0] = String.valueOf("Currently no available tracing session");
+        return new CommandResult(0, output);
     }
 }
This page took 0.023722 seconds and 5 git commands to generate.