Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / dos / test / JU_DenialOfServiceTafResp.java
index 34b2a51..b9b7b16 100644 (file)
@@ -37,21 +37,21 @@ import org.onap.aaf.cadi.taf.dos.DenialOfServiceTafResp;
 
 public class JU_DenialOfServiceTafResp {
 
-       private final static String description = "description";
-       private final static RESP status = RESP.IS_AUTHENTICATED;
-
-       private PropAccess access;
-
-       @Before
-       public void setup() {
-               access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
-       }
-
-       @Test
-       public void test() throws IOException {
-               DenialOfServiceTafResp resp = new DenialOfServiceTafResp(access, status, description);
-               assertThat(resp.isAuthenticated(), is(status));
-               assertThat(resp.authenticate(), is(status));
-       }
+    private final static String description = "description";
+    private final static RESP status = RESP.IS_AUTHENTICATED;
+
+    private PropAccess access;
+
+    @Before
+    public void setup() {
+        access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
+    }
+
+    @Test
+    public void test() throws IOException {
+        DenialOfServiceTafResp resp = new DenialOfServiceTafResp(access, status, description);
+        assertThat(resp.isAuthenticated(), is(status));
+        assertThat(resp.authenticate(), is(status));
+    }
 
 }