Skip to content

Commit

Permalink
test(DohClientTest): timeout on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Jul 2, 2018
1 parent b01ef91 commit 2b475da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/DohClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void Query_Timeout()
Timeout = TimeSpan.FromMilliseconds(0)
};
var query = new Message { RD = true };
query.Questions.Add(new Question { Name = "ipfs.io", Type = DnsType.TXT });
query.Questions.Add(new Question { Name = "ipfs-x.io", Type = DnsType.TXT });
ExceptionAssert.Throws<TaskCanceledException>(() =>
{
var _ = doh.QueryAsync(query).Result;
Expand Down

0 comments on commit 2b475da

Please sign in to comment.