From f42a03615730d93bab8e8f8642a89ff66eb59eac Mon Sep 17 00:00:00 2001 From: Sofya Balandina Date: Mon, 4 Sep 2023 07:52:31 +0100 Subject: [PATCH] [apiConformance] Fix some test results are not in report (#19522) --- .../plugin/shared/src/behavior/ov_plugin/properties_tests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/functional/plugin/shared/src/behavior/ov_plugin/properties_tests.cpp b/src/tests/functional/plugin/shared/src/behavior/ov_plugin/properties_tests.cpp index bf9023b2c06..82affbe613b 100644 --- a/src/tests/functional/plugin/shared/src/behavior/ov_plugin/properties_tests.cpp +++ b/src/tests/functional/plugin/shared/src/behavior/ov_plugin/properties_tests.cpp @@ -77,7 +77,6 @@ void OVPropertiesTestsWithCompileModelProps::SetUp() { SKIP_IF_CURRENT_TEST_IS_DISABLED(); std::string temp_device; std::tie(temp_device, properties) = this->GetParam(); - APIBaseTest::SetUp(); std::string::size_type pos = temp_device.find(":", 0); std::string hw_device; @@ -98,6 +97,8 @@ void OVPropertiesTestsWithCompileModelProps::SetUp() { } model = ngraph::builder::subgraph::makeSplitConcat(); + + APIBaseTest::SetUp(); } void OVPropertiesTestsWithCompileModelProps::TearDown() {