AAI-1523 checkstyle warnings for aai-core concurre
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / concurrent / AaiCallableTest.java
index b1507b7..94b1ef6 100644 (file)
@@ -27,23 +27,23 @@ import org.slf4j.MDC;
 import org.onap.aai.concurrent.AaiCallable;
 
 public class AaiCallableTest extends AAISetup {
-       @Test
-       public void testAaiCallable() {
-               MDC.put("test_name", "test_value");
-               
-               AaiCallable<Object> task = new AaiCallable<Object>() {
-                       @Override
-                       public Object process() {
-                               String mdcValue = MDC.get("test_name");
-                               assertTrue( "MDC value retained", "test_value".equals(mdcValue));
-                               return (new Object());
-                       }
-               };
-               try {
-                       task.call();
-               }
-               catch (Exception e) {
-                       e.printStackTrace();
-               }
-       }
+    @Test
+    public void testAaiCallable() {
+        MDC.put("test_name", "test_value");
+        
+        AaiCallable<Object> task = new AaiCallable<Object>() {
+            @Override
+            public Object process() {
+                String mdcValue = MDC.get("test_name");
+                assertTrue( "MDC value retained", "test_value".equals(mdcValue));
+                return (new Object());
+            }
+        };
+        try {
+            task.call();
+        }
+        catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
 }