Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / test / java / org / onap / so / client / dmaap / DmaapClientTest.java
index 4b90cfe..26fb1cd 100644 (file)
 package org.onap.so.client.dmaap;
 
 import static org.junit.Assert.assertEquals;
-
 import java.io.FileNotFoundException;
 import java.io.IOException;
-
 import org.junit.Test;
 import org.onap.so.client.sdno.dmaap.SDNOHealthCheckDmaapConsumer;
 
 public class DmaapClientTest {
 
-       @Test
-       public void deobfuscateTest() throws FileNotFoundException, IOException {
-               String encodedBase64 = "dGVzdHBhc3N3b3Jk";
-               String notEncoded = "testpassword";
-               DmaapConsumer consumer = new SDNOHealthCheckDmaapConsumer();
-               assertEquals("decoded password", notEncoded, consumer.deobfuscatePassword(encodedBase64));
+    @Test
+    public void deobfuscateTest() throws FileNotFoundException, IOException {
+        String encodedBase64 = "dGVzdHBhc3N3b3Jk";
+        String notEncoded = "testpassword";
+        DmaapConsumer consumer = new SDNOHealthCheckDmaapConsumer();
+        assertEquals("decoded password", notEncoded, consumer.deobfuscatePassword(encodedBase64));
 
-       }
+    }
 }