AAI-1523 Batch reformat aai-schema-ingest
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / validation / FailFastStrategyTest.java
index 0d9ded0..ceced41 100644 (file)
@@ -31,16 +31,16 @@ import org.onap.aai.validation.FailFastStrategy;
 public class FailFastStrategyTest {
     @Rule
     public ExpectedException thrown = ExpectedException.none();
-    
+
     @Test
     public void test() {
         FailFastStrategy strat = new FailFastStrategy();
-        
-        //simulate no issues found
+
+        // simulate no issues found
         assertTrue(strat.isOK());
         assertTrue("No errors found.".equals(strat.getErrorMsg()));
-        
-        //simulate an issue found
+
+        // simulate an issue found
         String testError = "hi i'm a problem";
         thrown.expect(AAISchemaValidationException.class);
         thrown.expectMessage(testError);