Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / test / JU_PuntTafResp.java
index aacce52..a6b3bd2 100644 (file)
@@ -35,21 +35,21 @@ import org.onap.aaf.cadi.taf.PuntTafResp;
 
 public class JU_PuntTafResp {
 
-       @Test
-       public void test() throws IOException {
-               String name = "name";
-               String explanation = "example explanation";
-
-               PuntTafResp punt = new PuntTafResp(name, explanation);
-
-               assertFalse(punt.isValid());
-               assertThat(punt.isAuthenticated(), is(RESP.TRY_ANOTHER_TAF));
-               assertThat(punt.desc(), is("Not processing this transaction: " + explanation));
-               assertThat(punt.taf(), is(name));
-               assertThat(punt.authenticate(), is(RESP.TRY_ANOTHER_TAF));
-               assertThat(punt.getPrincipal(), is(nullValue()));
-               assertThat(punt.getAccess(), is(Access.NULL));
-               assertFalse(punt.isFailedAttempt());
-       }
+    @Test
+    public void test() throws IOException {
+        String name = "name";
+        String explanation = "example explanation";
+
+        PuntTafResp punt = new PuntTafResp(name, explanation);
+
+        assertFalse(punt.isValid());
+        assertThat(punt.isAuthenticated(), is(RESP.TRY_ANOTHER_TAF));
+        assertThat(punt.desc(), is("Not processing this transaction: " + explanation));
+        assertThat(punt.taf(), is(name));
+        assertThat(punt.authenticate(), is(RESP.TRY_ANOTHER_TAF));
+        assertThat(punt.getPrincipal(), is(nullValue()));
+        assertThat(punt.getAccess(), is(Access.NULL));
+        assertFalse(punt.isFailedAttempt());
+    }
 
 }