mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[224677] Adjusted tests to account for new launch sequence.
This commit is contained in:
parent
7b062fd957
commit
f740036430
1 changed files with 3 additions and 2 deletions
|
@ -274,7 +274,7 @@ public class MIRunControlTest extends BaseTestCase {
|
|||
* getModelData should return StateChangeReason.
|
||||
*/
|
||||
Assert.assertTrue(" State change reason for a normal execution should be CONTAINER." ,
|
||||
StateChangeReason.CONTAINER == data.getStateChangeReason());
|
||||
StateChangeReason.USER_REQUEST == data.getStateChangeReason());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -397,7 +397,8 @@ public class MIRunControlTest extends BaseTestCase {
|
|||
/*
|
||||
* StateChangeReason in getModelData for Container DMC is null.
|
||||
*/
|
||||
Assert.assertNull(data.getStateChangeReason());
|
||||
Assert.assertTrue(" State change reason for a normal execution should be CONTAINER." ,
|
||||
StateChangeReason.USER_REQUEST == data.getStateChangeReason());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue