STORM-1255: fix spacing in test

Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a8edd512
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a8edd512
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a8edd512

Branch: refs/heads/master
Commit: a8edd512c903d44bf26a57cace8f848cc4660738
Parents: 3fe11ec
Author: Alessandro Bellina <[email protected]>
Authored: Wed Feb 17 12:36:32 2016 -0600
Committer: Alessandro Bellina <[email protected]>
Committed: Wed Feb 17 12:36:32 2016 -0600

----------------------------------------------------------------------
 storm-core/test/jvm/org/apache/storm/utils/TimeTest.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a8edd512/storm-core/test/jvm/org/apache/storm/utils/TimeTest.java
----------------------------------------------------------------------
diff --git a/storm-core/test/jvm/org/apache/storm/utils/TimeTest.java 
b/storm-core/test/jvm/org/apache/storm/utils/TimeTest.java
index 13b4914..354095c 100644
--- a/storm-core/test/jvm/org/apache/storm/utils/TimeTest.java
+++ b/storm-core/test/jvm/org/apache/storm/utils/TimeTest.java
@@ -25,12 +25,12 @@ public class TimeTest {
 
     @Test
     public void secsToMillisLongTest() {
-        Assert.assertEquals(Time.secsToMillisLong(0),     0);
+        Assert.assertEquals(Time.secsToMillisLong(0), 0);
         Assert.assertEquals(Time.secsToMillisLong(0.002), 2);
-        Assert.assertEquals(Time.secsToMillisLong(1),     1000);
-        Assert.assertEquals(Time.secsToMillisLong(1.08),  1080);
-        Assert.assertEquals(Time.secsToMillisLong(10),    10000);
-        Assert.assertEquals(Time.secsToMillisLong(10.1),  10100);
+        Assert.assertEquals(Time.secsToMillisLong(1), 1000);
+        Assert.assertEquals(Time.secsToMillisLong(1.08), 1080);
+        Assert.assertEquals(Time.secsToMillisLong(10), 10000);
+        Assert.assertEquals(Time.secsToMillisLong(10.1), 10100);
     }
 
     @Test(expected=IllegalStateException.class)

Reply via email to