summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-09-09 05:35:36 -0700
committerBob Halley <halley@dnspython.org>2020-09-09 05:35:36 -0700
commitba56a756392a996282f6b62fbecb73757a1619a0 (patch)
tree4bb3677b0dfb66866d3191b1d0c421158f571917 /tests
parent6fb7434511a9b244a960193fc33174c7c6bab172 (diff)
downloaddnspython-ba56a756392a996282f6b62fbecb73757a1619a0.tar.gz
correct and simplify weighted_processing_order()
Diffstat (limited to 'tests')
-rw-r--r--tests/test_processing_order.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_processing_order.py b/tests/test_processing_order.py
index cc33fd4..2fa1b27 100644
--- a/tests/test_processing_order.py
+++ b/tests/test_processing_order.py
@@ -102,12 +102,3 @@ def test_processing_all_zero_weight_srv():
assert rds[j] in po
seen.add(tuple(po))
assert len(seen) == 6
-
-
-def test_processing_all_zero_weight_uri():
- rds = dns.rdataset.from_text('in', 'uri', 300,
- '10 0 "ftp://ftp1.example.com/public"',
- '10 0 "ftp://ftp2.example.com/public"',
- '10 0 "ftp://ftp3.example.com/public"')
- po = rds.processing_order()
- assert len(po) == 0