Browse Source

Remove unused try block in UT (#6182)

closes https://github.com/apache/dolphinscheduler/issues/6181
Jiajie Zhong 3 years ago
parent
commit
cbeedba3e2

+ 0 - 9
dolphinscheduler-alert/src/test/java/org/apache/dolphinscheduler/alert/plugin/AlertPluginManagerTest.java

@@ -31,8 +31,6 @@ import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.collect.ImmutableList;
-
 /**
  * AlertPluginManager Tester.
  */
@@ -55,13 +53,6 @@ public class AlertPluginManagerTest {
             alertPluginManagerConfig.setMavenLocalRepository(Objects.requireNonNull(PropertyUtils.getString(AlertServer.MAVEN_LOCAL_REPOSITORY)).trim());
         }
 
-        DolphinPluginLoader alertPluginLoader = new DolphinPluginLoader(alertPluginManagerConfig, ImmutableList.of(alertPluginManager));
-        try {
-            //alertPluginLoader.loadPlugins();
-        } catch (Exception e) {
-            throw new RuntimeException("load Alert Plugin Failed !", e);
-        }
-
         Assert.assertNull(alertPluginManager.getAlertChannelFactoryMap().get("Email"));
     }
 }