[tests] fix type name for std::pair in downloader test

Signed-off-by: Wojciech Sipak <wsipak@protonmail.com>
This commit is contained in:
Wojciech Sipak
2025-09-20 17:55:16 +00:00
committed by x7z4w
parent 8f8c905d9e
commit 6f96e0bd8a

View File

@@ -320,7 +320,7 @@ UNIT_TEST(ChunksDownloadStrategyDynamicChunks)
{
vector<string> const servers = {"UrlOfServer1", "UrlOfServer2"};
typedef pair<int64_t, int64_t> RangeT;
typedef std::pair<int64_t, int64_t> RangeT;
string url;
ChunksDownloadStrategy strategy(servers);