This is an automated email from the ASF dual-hosted git repository. adebreceni pushed a commit to branch minifi-api-reduced in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 13460b68551bc2903c18a002f2d0ef1a00e2c4a0 Author: Adam Debreceni <[email protected]> AuthorDate: Mon Apr 28 12:48:16 2025 +0200 Rebase fix --- extensions/procfs/tests/ProcFsMonitorTests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/procfs/tests/ProcFsMonitorTests.cpp b/extensions/procfs/tests/ProcFsMonitorTests.cpp index cf2ccb4eb..55d4bcfb3 100644 --- a/extensions/procfs/tests/ProcFsMonitorTests.cpp +++ b/extensions/procfs/tests/ProcFsMonitorTests.cpp @@ -19,11 +19,12 @@ #include "unit/SingleProcessorTestController.h" #include "unit/Catch.h" #include "processors/ProcFsMonitor.h" +#include "unit/ProcessorUtils.h" namespace org::apache::nifi::minifi::extensions::procfs::tests { TEST_CASE("ProcFsMonitorTests", "[procfsmonitortests]") { - org::apache::nifi::minifi::test::SingleProcessorTestController test_controller_{std::make_unique<ProcFsMonitor>("ProcFsMonitor")}; + org::apache::nifi::minifi::test::SingleProcessorTestController test_controller_{minifi::test::utils::make_processor<ProcFsMonitor>("ProcFsMonitor")}; auto proc_fs_monitor = test_controller_.getProcessor(); SECTION("Absolute JSON") {
