diff --git a/extensions/execute-process/ExecuteProcess.cpp b/extensions/execute-process/ExecuteProcess.cpp index 472f53a9d6..21a215a2c4 100644 --- a/extensions/execute-process/ExecuteProcess.cpp +++ b/extensions/execute-process/ExecuteProcess.cpp @@ -19,11 +19,12 @@ */ #include "ExecuteProcess.h" +#include + #include #include #include #include -#include #include "core/ProcessContext.h" #include "core/ProcessSession.h" diff --git a/extensions/gcp/processors/PutGCSObject.h b/extensions/gcp/processors/PutGCSObject.h index 1b10423c2a..bdfe30fc19 100644 --- a/extensions/gcp/processors/PutGCSObject.h +++ b/extensions/gcp/processors/PutGCSObject.h @@ -27,7 +27,6 @@ #include "core/PropertyType.h" #include "core/RelationshipDefinition.h" #include "core/logging/LoggerFactory.h" -#include "core/RelationshipDefinition.h" #include "utils/ArrayUtils.h" #include "utils/Enum.h" #include "google/cloud/storage/well_known_headers.h" diff --git a/extensions/standard-processors/tests/integration/VerifyInvokeHTTP.h b/extensions/standard-processors/tests/integration/VerifyInvokeHTTP.h index dbf11714ec..3f624ab12a 100644 --- a/extensions/standard-processors/tests/integration/VerifyInvokeHTTP.h +++ b/extensions/standard-processors/tests/integration/VerifyInvokeHTTP.h @@ -17,7 +17,6 @@ */ #pragma once -#include "core/PropertyDefinition.h" #include #include @@ -29,6 +28,7 @@ #include "processors/LogAttribute.h" #include "controllers/SSLContextService.h" #include "core/state/ProcessorController.h" +#include "core/PropertyDefinition.h" #include "integration/HTTPIntegrationBase.h" #include "unit/Catch.h" #include "unit/ProvenanceTestHelper.h" diff --git a/extensions/standard-processors/tests/unit/ControllerServiceTests.cpp b/extensions/standard-processors/tests/unit/ControllerServiceTests.cpp index 2615e69a74..d1bb4cf7db 100644 --- a/extensions/standard-processors/tests/unit/ControllerServiceTests.cpp +++ b/extensions/standard-processors/tests/unit/ControllerServiceTests.cpp @@ -39,7 +39,7 @@ TEST_CASE("Test ControllerServicesMap", "[cs1]") { REQUIRE(map.getAllControllerServices().empty()); std::shared_ptr service = std::make_shared(); - std::shared_ptr testNode = std::make_shared(service, "ID", std::make_shared()); + auto testNode = std::make_shared(service, "ID", std::make_shared()); map.put("ID", testNode); REQUIRE(1 == map.getAllControllerServices().size()); @@ -58,7 +58,7 @@ TEST_CASE("Test StandardControllerServiceNode nullPtr", "[cs1]") { core::controller::ControllerServiceNodeMap map; try { - std::shared_ptr testNode = std::make_shared(nullptr, "ID", std::make_shared()); + auto testNode = std::make_shared(nullptr, "ID", std::make_shared()); } catch (const minifi::Exception &) { return; } @@ -68,7 +68,7 @@ TEST_CASE("Test StandardControllerServiceNode nullPtr", "[cs1]") { std::shared_ptr newCsNode(const std::string& id) { std::shared_ptr service = std::make_shared(); - std::shared_ptr testNode = std::make_shared(service, id, std::make_shared()); + auto testNode = std::make_shared(service, id, std::make_shared()); return testNode; }