1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Missing space

This commit is contained in:
Marc Khouzam 2010-06-04 14:42:27 +00:00
parent 7b8cac960e
commit 1e1508c33c

View file

@ -125,7 +125,7 @@ public class GDBProcessesTest extends BaseTestCase {
*/
IThreadDMData processData = (IThreadDMData)fWait.getReturnInfo();
Assert.assertNotNull("No process data is returned for Process DMC", processData);
Assert.assertTrue("Process data should be executable name " + EXEC_NAME + "but we got" + processData.getName(),
Assert.assertTrue("Process data should be executable name " + EXEC_NAME + "but we got " + processData.getName(),
processData.getName().contains(EXEC_NAME));
}