From 2a0db51cd900411d143cfabc7236784c0af3571f Mon Sep 17 00:00:00 2001 From: Arseny Smirnov Date: Thu, 24 Jan 2019 23:03:30 +0400 Subject: [PATCH] GetHostByName: better test GitOrigin-RevId: 2be0f5e7b3122c7fd9122fcab763dffcad3d47ab --- test/mtproto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mtproto.cpp b/test/mtproto.cpp index 466b1455..f8916a8a 100644 --- a/test/mtproto.cpp +++ b/test/mtproto.cpp @@ -58,7 +58,7 @@ TEST(Mtproto, GetHostByName) { GetHostByNameActor::resolve(host, options, std::move(promise)).release(); }; - std::vector hosts = {"127.0.0.2", "1.1.1.1", "localhost", "web.telegram.org"}; + std::vector hosts = {"127.0.0.2", "1.1.1.1", "localhost", "web.telegram.org", "москва.рф"}; for (auto host : hosts) { for (auto type : {GetHostByNameActor::ResolveType::Native, GetHostByNameActor::ResolveType::Google, GetHostByNameActor::ResolveType::All}) {