Skip to content

Commit

Permalink
test: skip Quad9 #18
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed May 23, 2019
1 parent 4a86bde commit ca68967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/DotClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ public async Task Query_Cloudflare_IPv6()
}

[TestMethod]
[Ignore("https://github.com/richardschneider/net-udns/issues/18")]
public async Task Query_Quad9()
{
using (var dot = new DotClient
Expand All @@ -312,7 +313,7 @@ public async Task Query_Quad9()
}
})
{
var query = new Message { RD = true };
var query = new Message { RD = true, Id = 1234 };
query.Questions.Add(new Question { Name = "ipfs.io", Type = DnsType.TXT });
var response = await dot.QueryAsync(query);
Assert.IsNotNull(response);
Expand Down

0 comments on commit ca68967

Please sign in to comment.