From 5c5ccb98ebb6c5e7ebc52f800430a67866500342 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Mon, 13 Dec 2021 15:40:41 +0300 Subject: [PATCH] Try to fix Windows post commit (#9176) --- src/core/tests/engines_util/test_case.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tests/engines_util/test_case.hpp b/src/core/tests/engines_util/test_case.hpp index ebac19783ce..410a5ed129a 100644 --- a/src/core/tests/engines_util/test_case.hpp +++ b/src/core/tests/engines_util/test_case.hpp @@ -24,7 +24,7 @@ public: TestCase(const std::shared_ptr& function, const std::string& dev = "TEMPLATE") : m_function{function} { try { // Register template plugin - m_core.register_plugin("templatePlugin", "TEMPLATE"); + m_core.register_plugin(std::string("templatePlugin") + IE_BUILD_POSTFIX, "TEMPLATE"); } catch (...) { } m_request = m_core.compile_model(function, dev).create_infer_request();