From: Remi Gacogne Date: Wed, 10 Apr 2019 10:26:22 +0000 (+0200) Subject: dnsdist: Fix protobuf's ipcipher regression tests for Python 3 X-Git-Tag: dnsdist-1.4.0-alpha1~2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1f8e030d9787bb22d3630e54c3e107c03b6994d;p=pdns dnsdist: Fix protobuf's ipcipher regression tests for Python 3 --- diff --git a/regression-tests.dnsdist/test_Protobuf.py b/regression-tests.dnsdist/test_Protobuf.py index d7bacbb63..c1a430271 100644 --- a/regression-tests.dnsdist/test_Protobuf.py +++ b/regression-tests.dnsdist/test_Protobuf.py @@ -409,7 +409,7 @@ class TestProtobufIPCipher(DNSDistProtobufTest): """ name = 'query.protobuf-ipcipher.tests.powerdns.com.' - target = 'target.protobuf-ipcipher.tests.powerdns.com.' + target = b'target.protobuf-ipcipher.tests.powerdns.com.' query = dns.message.make_query(name, 'A', 'IN') response = dns.message.make_response(query)