mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
assertEquals should have its first parameter be the expected value.
This commit is contained in:
parent
e2b7ee1e1c
commit
6dd4a791d3
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ public class SyncUtil {
|
|||
if (isSuccess()) {
|
||||
IDMContext[] contexts = getData();
|
||||
Assert.assertNotNull("invalid return value from service", contexts);
|
||||
Assert.assertEquals("unexpected number of processes", contexts.length, 1);
|
||||
Assert.assertEquals("unexpected number of processes", 1, contexts.length);
|
||||
IDMContext context = contexts[0];
|
||||
Assert.assertNotNull("unexpected process context type ", context);
|
||||
waitor.setReturnInfo(context);
|
||||
|
|
Loading…
Add table
Reference in a new issue