Skip to content

Commit

Permalink
TEMP: fix 3
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed May 29, 2022
1 parent 0018526 commit 29119ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ipatests/test_xmlrpc/test_dns_plugin.py
Expand Up @@ -4189,7 +4189,7 @@ def forward_zone_setup(self, declarative_setup):
'messages': ({
'message': lambda x: x.startswith(
"DNS server %s: query '%s SOA':"
% (forwarder1_custom_port, fwzone_custom_port)
% (forwarder2_custom_port, fwzone_custom_port)
),
'code': 13006,
'type': 'warning',
Expand All @@ -4198,7 +4198,7 @@ def forward_zone_setup(self, declarative_setup):
'error': lambda x: x.startswith(
"query '%s SOA':" % fwzone_custom_port
),
'server': u"%s" % forwarder1_custom_port
'server': u"%s" % forwarder2_custom_port
}
},),
'result': {
Expand Down Expand Up @@ -4259,15 +4259,15 @@ def forward_zone_setup(self, declarative_setup):
u'messages': ({
u'message': lambda x: x.startswith(
u"DNS server %s: query '%s SOA':"
% (forwarder1_custom_port, fwzone_custom_port)
% (forwarder_custom_port_inv1, fwzone_custom_port)
),
u'code': 13006,
u'type':u'warning',
u'name': u'DNSServerValidationWarning',
u'data': {
u'error': lambda x: x.startswith(
u"query '%s SOA':" % fwzone_custom_port
) and x.endswith(u"[Errno 22] Invalid argument."),
) and u"[Errno 22] Invalid argument" in x,
u'server': u"%s" % forwarder_custom_port_inv1
}
},),
Expand Down

0 comments on commit 29119ba

Please sign in to comment.