takraj commented on code in PR #9565:
URL: https://github.com/apache/nifi/pull/9565#discussion_r1872899016


##########
nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/manifest/StandardRuntimeManifestServiceTest.java:
##########
@@ -105,6 +120,49 @@ public void testGetRuntimeManifest() {
         assertEquals(1, controllerServiceDefinitions.size());
     }
 
+    @Test
+    public void testGetPythonManifest() {
+        final String CLASS_NAME = "ClassName";
+        final List<String> EXPECTED_TAGS = Arrays.asList("tag1", "tag2");

Review Comment:
   Addressed in  030405d



##########
nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/manifest/StandardRuntimeManifestServiceTest.java:
##########
@@ -105,6 +120,49 @@ public void testGetRuntimeManifest() {
         assertEquals(1, controllerServiceDefinitions.size());
     }
 
+    @Test
+    public void testGetPythonManifest() {
+        final String CLASS_NAME = "ClassName";
+        final List<String> EXPECTED_TAGS = Arrays.asList("tag1", "tag2");
+
+        when(extensionManager.getAllBundles()).thenReturn(emptySet());
+        
when(extensionManager.getExtensions(Processor.class)).thenReturn(Sets.newSet(

Review Comment:
   Addressed in  030405d



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to