From 6f96e0bd8ac912e21d242efee5bd1b674b599545 Mon Sep 17 00:00:00 2001 From: Wojciech Sipak Date: Sat, 20 Sep 2025 17:55:16 +0000 Subject: [PATCH] [tests] fix type name for std::pair in downloader test Signed-off-by: Wojciech Sipak --- .../platform_tests/downloader_tests/downloader_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/platform/platform_tests/downloader_tests/downloader_test.cpp b/libs/platform/platform_tests/downloader_tests/downloader_test.cpp index f6273f303..aca39751d 100644 --- a/libs/platform/platform_tests/downloader_tests/downloader_test.cpp +++ b/libs/platform/platform_tests/downloader_tests/downloader_test.cpp @@ -320,7 +320,7 @@ UNIT_TEST(ChunksDownloadStrategyDynamicChunks) { vector const servers = {"UrlOfServer1", "UrlOfServer2"}; - typedef pair RangeT; + typedef std::pair RangeT; string url; ChunksDownloadStrategy strategy(servers);