fix failing test (was assuming restartable=false by default)
This commit is contained in:
@@ -80,9 +80,9 @@ public class AbstractJobTests {
|
||||
*/
|
||||
@Test
|
||||
public void testSetRestartable() {
|
||||
assertFalse(job.isRestartable());
|
||||
job.setRestartable(true);
|
||||
assertTrue(job.isRestartable());
|
||||
job.setRestartable(false);
|
||||
assertFalse(job.isRestartable());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user