Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / util / test / JU_MaskFormatException.java
index ea74343..ba03b6b 100644 (file)
@@ -30,15 +30,15 @@ import org.onap.aaf.cadi.util.MaskFormatException;
 
 public class JU_MaskFormatException {
 
-       @Test
-       public void throwsTest() {
-               String errorMessage = "This is a MaskFormatException";
-               try {
-                       throw new MaskFormatException(errorMessage);
-               } catch (Exception e) {
-                       assertThat(e.getMessage(), is(errorMessage));
-                       assertTrue(e instanceof MaskFormatException);
-               }
-       }
+    @Test
+    public void throwsTest() {
+        String errorMessage = "This is a MaskFormatException";
+        try {
+            throw new MaskFormatException(errorMessage);
+        } catch (Exception e) {
+            assertThat(e.getMessage(), is(errorMessage));
+            assertTrue(e instanceof MaskFormatException);
+        }
+    }
 
 }