mirror of
https://github.com/apache/jclouds.git
synced 2025-02-16 15:08:28 +00:00
formatting
This commit is contained in:
parent
557445db57
commit
90037fb656
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user