Skip to content
Snippets Groups Projects
Commit b09365a2 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

tests-extra: use getattr instead of if machinery

parent cbbb84ec
No related branches found
No related tags found
No related merge requests found
......@@ -60,18 +60,12 @@ class Response(object):
nordata=None):
'''Checks given section for particular record/rdata'''
sect = getattr(self.resp, section)
if not rtype:
rtype = self.rtype
elif type(rtype) is str:
rtype = dns.rdatatype.from_text(rtype)
if section == "answer":
sect = self.resp.answer
elif section == "additional":
sect = self.resp.additional
elif section == "authority":
sect = self.resp.authority
# Check rdata presence.
if rdata:
# We work with just one rdata with TTL=0 (this TTL is not used).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment