From 1930ec56c74e6bf048f0fa751e2de95f647c4c1a Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Mon, 19 Sep 2022 09:01:44 +0000 Subject: [PATCH] test(plugin): bump plugin API in test Signed-off-by: Andrea Terzolo Co-authored-by: Jason Dellaluce --- test/plugins/test_extract.cpp | 2 +- test/plugins/test_source.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/plugins/test_extract.cpp b/test/plugins/test_extract.cpp index 0e7a4947..7131966f 100644 --- a/test/plugins/test_extract.cpp +++ b/test/plugins/test_extract.cpp @@ -19,7 +19,7 @@ limitations under the License. #include #include -static const char *pl_required_api_version = "1.0.0"; +static const char *pl_required_api_version = PLUGIN_API_VERSION_STR; static const char *pl_name_base = "test_extract"; static char pl_name[1024]; static const char *pl_desc = "Test Plugin For Regression Tests"; diff --git a/test/plugins/test_source.cpp b/test/plugins/test_source.cpp index 1377b532..ea026f4a 100644 --- a/test/plugins/test_source.cpp +++ b/test/plugins/test_source.cpp @@ -20,7 +20,7 @@ limitations under the License. #include -static const char *pl_required_api_version = "1.0.0"; +static const char *pl_required_api_version = PLUGIN_API_VERSION_STR; static uint32_t pl_id = 999; static const char *pl_name = "test_source"; static const char *pl_desc = "Test Plugin For Regression Tests";