Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / helpers / test / JU_History.java
index f617af9..3346f22 100644 (file)
@@ -38,31 +38,31 @@ import java.util.UUID;
 import org.junit.Test;
 
 public class JU_History {
-       
-       History history;
-       History history1;
-       
-       @Before
-       public void setUp() {
-               UUID id = new UUID(0, 0);
-               history = new History(id, "action", "memo", "subject", "target", "user", 5);
-               history1 = new History(id, "action", "memo", "reconstruct", "subject", "target", "user", 5);
-       }
+    
+    History history;
+    History history1;
+    
+    @Before
+    public void setUp() {
+        UUID id = new UUID(0, 0);
+        history = new History(id, "action", "memo", "subject", "target", "user", 5);
+        history1 = new History(id, "action", "memo", "reconstruct", "subject", "target", "user", 5);
+    }
 
-       @Test
-       public void testToString() {
-               String result = "00000000-0000-0000-0000-000000000000 5 user, target, action, subject, memo";
-               Assert.assertEquals(result, history.toString());
-       }
-       
-       @Test
-       public void testHashCode() {
-               Assert.assertEquals(0, history.hashCode());
-       }
-       
-       @Test
-       public void testEquals() {
-               Assert.assertFalse(history.equals(history1));
-       }
-       
+    @Test
+    public void testToString() {
+        String result = "00000000-0000-0000-0000-000000000000 5 user, target, action, subject, memo";
+        Assert.assertEquals(result, history.toString());
+    }
+    
+    @Test
+    public void testHashCode() {
+        Assert.assertEquals(0, history.hashCode());
+    }
+    
+    @Test
+    public void testEquals() {
+        Assert.assertFalse(history.equals(history1));
+    }
+    
 }