1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +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(); IThreadDMData processData = (IThreadDMData)fWait.getReturnInfo();
Assert.assertNotNull("No process data is returned for Process DMC", processData); 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)); processData.getName().contains(EXEC_NAME));
} }