From 6ae332b072499a52d593e9d26b1321c7b2769d6f Mon Sep 17 00:00:00 2001 From: Mikhail Kozlov Date: Thu, 1 Oct 2020 14:34:04 +0300 Subject: [PATCH] Fix virtual class inheritance for single layer test detection output (#2472) --- .../shared/include/single_layer_tests/detection_output.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/detection_output.hpp b/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/detection_output.hpp index 756ae8ad8..cddc56c45 100644 --- a/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/detection_output.hpp +++ b/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/detection_output.hpp @@ -57,7 +57,7 @@ using DetectionOutputParams = std::tuple< std::string // Device name >; -class DetectionOutputLayerTest : public testing::WithParamInterface, public LayerTestsUtils::LayerTestsCommon { +class DetectionOutputLayerTest : public testing::WithParamInterface, virtual public LayerTestsUtils::LayerTestsCommon { public: static std::string getTestCaseName(testing::TestParamInfo obj); ngraph::op::DetectionOutputAttrs attrs; -- 2.34.1