formatting

This commit is contained in:
Adrian Cole 2011-09-30 10:49:58 -07:00
parent 557445db57
commit 90037fb656

View File

@ -60,7 +60,7 @@ public class NodePredicatesTest {
Assert.assertTrue(nodeRunning.apply(node));
}
@Test(expectedExceptions=IllegalStateException.class)
@Test(expectedExceptions = IllegalStateException.class)
public void testNodeRunningFailsOnTerminated() {
expect(node.getState()).andReturn(NodeState.TERMINATED).atLeastOnce();
replay(node);
@ -70,7 +70,7 @@ public class NodePredicatesTest {
nodeRunning.apply(node);
}
@Test(expectedExceptions=IllegalStateException.class)
@Test(expectedExceptions = IllegalStateException.class)
public void testNodeRunningFailsOnError() {
expect(node.getState()).andReturn(NodeState.ERROR).atLeastOnce();
replay(node);