From 104c343759d10ec9a4af0472b2d486766705ec38 Mon Sep 17 00:00:00 2001 From: Brindusan Cristian Date: Tue, 9 Jul 2019 01:23:51 +0300 Subject: [PATCH] Backed out changeset a8520d54fccb for ESlint failure at test_trr.js:684:30. CLOSED TREE --- netwerk/test/unit/test_trr.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/netwerk/test/unit/test_trr.js b/netwerk/test/unit/test_trr.js index baef414753b3..234b92b1b952 100644 --- a/netwerk/test/unit/test_trr.js +++ b/netwerk/test/unit/test_trr.js @@ -678,20 +678,6 @@ add_task(async function test24c() { await new DNSListener("bar.example.com", "127.0.0.1"); }); -// TRR-first check that DNS result is used if domain is part of the excluded-domains pref that contains things before it. -add_task(async function test24d() { - dns.clearCache(true); - Services.prefs.setCharPref("network.trr.excluded-domains", "foo.test.com, bar.example.com"); - await new DNSListener("bar.example.com", "127.0.0.1"); -}); - -// TRR-first check that DNS result is used if domain is part of the excluded-domains pref that contains things after it. -add_task(async function test24e() { - dns.clearCache(true); - Services.prefs.setCharPref("network.trr.excluded-domains", "bar.example.com, foo.test.com"); - await new DNSListener("bar.example.com", "127.0.0.1"); -}); - // TRR-only that resolving localhost with TRR-only mode will use the remote // resolver if it's not in the excluded domains add_task(async function test25() {