From 1d7b6bb485e35cf8fe0f2ff71c6ca765d940bcfb Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Fri, 5 Nov 2021 15:30:59 -0700 Subject: [PATCH] Fix up build error by adding missing parenthesis in tests (#3071) * Fix up build error by adding missing parenthesis in tests * Because static lib curl tests were disabled we need to lower the threshold --- .../test/ut/transport_adapter_implementation_test.cpp | 4 ++-- sdk/core/ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/core/azure-core/test/ut/transport_adapter_implementation_test.cpp b/sdk/core/azure-core/test/ut/transport_adapter_implementation_test.cpp index 68f8f2811..85117bec7 100644 --- a/sdk/core/azure-core/test/ut/transport_adapter_implementation_test.cpp +++ b/sdk/core/azure-core/test/ut/transport_adapter_implementation_test.cpp @@ -54,7 +54,7 @@ namespace Azure { namespace Core { namespace Test { TransportAdapter, testing::Values( GetTransportOptions("winHttp", std::make_shared()), - GetTransportOptions("libCurl", std::make_shared()), + GetTransportOptions("libCurl", std::make_shared())), GetSuffix); #elif defined(BUILD_TRANSPORT_WINHTTP_ADAPTER) @@ -72,7 +72,7 @@ namespace Azure { namespace Core { namespace Test { Test, TransportAdapter, testing::Values( - GetTransportOptions("libCurl", std::make_shared()), + GetTransportOptions("libCurl", std::make_shared())), GetSuffix); #else /* Custom adapter. Not adding tests */ diff --git a/sdk/core/ci.yml b/sdk/core/ci.yml index 3a8d1ba74..9bf3eda27 100644 --- a/sdk/core/ci.yml +++ b/sdk/core/ci.yml @@ -37,7 +37,7 @@ stages: CtestRegex: azure-core. LiveTestCtestRegex: '"azure-core.|json-test"' LiveTestTimeoutInMinutes: 90 # default is 60 min. We need a little longer on worst case for Win+jsonTests - LineCoverageTarget: 79 + LineCoverageTarget: 77 BranchCoverageTarget: 30 Artifacts: - Name: azure-core