adamdebreceni commented on code in PR #2065:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2065#discussion_r2782543212


##########
libminifi/test/unit/YamlFlowSerializerTests.cpp:
##########
@@ -327,11 +327,11 @@ TEST_CASE("The encrypted flow configuration can be 
decrypted with the correct ke
   const auto controller_service_id = "b9801278-7b5d-4314-aed6-713fd4b5f933";
   const auto* const controller_service_node_before = 
process_group_before->findControllerService(controller_service_id);
   REQUIRE(controller_service_node_before);
-  const auto* const controller_service_before = 
controller_service_node_before->getControllerServiceImplementation();
+  const auto controller_service_before = 
controller_service_node_before->getControllerServiceImplementation();
   REQUIRE(controller_service_node_before);
   const auto* const controller_service_node_after = 
process_group_after->findControllerService(controller_service_id);
   REQUIRE(controller_service_node_after);
-  const auto* const controller_service_after = 
controller_service_node_before->getControllerServiceImplementation();
+  const auto controller_service_after = 
controller_service_node_before->getControllerServiceImplementation();

Review Comment:
   done



##########
libminifi/test/unit/JsonFlowSerializerTests.cpp:
##########
@@ -712,11 +712,11 @@ TEST_CASE("The encrypted flow configuration can be 
decrypted with the correct ke
   const auto controller_service_id = "b9801278-7b5d-4314-aed6-713fd4b5f933";
   const auto* const controller_service_node_before = 
process_group_before->findControllerService(controller_service_id);
   REQUIRE(controller_service_node_before);
-  const auto* const controller_service_before = 
controller_service_node_before->getControllerServiceImplementation();
+  const auto controller_service_before = 
controller_service_node_before->getControllerServiceImplementation();
   REQUIRE(controller_service_node_before);
   const auto* const controller_service_node_after = 
process_group_after->findControllerService(controller_service_id);
   REQUIRE(controller_service_node_after);
-  const auto* const controller_service_after = 
controller_service_node_before->getControllerServiceImplementation();
+  const auto controller_service_after = 
controller_service_node_before->getControllerServiceImplementation();

Review Comment:
   done



-- 
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