##// END OF EJS Templates
tests: avoid implicit conversion of str to unicode...
Manuel Jacob -
r44933:109322cd default
parent child Browse files
Show More
@@ -1428,7 +1428,7 b' class Test(unittest.TestCase):'
1428 )
1428 )
1429 hgrc.write(b'[web]\n')
1429 hgrc.write(b'[web]\n')
1430 hgrc.write(b'address = localhost\n')
1430 hgrc.write(b'address = localhost\n')
1431 hgrc.write(b'ipv6 = %s\n' % str(self._useipv6).encode('ascii'))
1431 hgrc.write(b'ipv6 = %r\n' % self._useipv6)
1432 hgrc.write(b'server-header = testing stub value\n')
1432 hgrc.write(b'server-header = testing stub value\n')
1433
1433
1434 for opt in self._extraconfigopts:
1434 for opt in self._extraconfigopts:
General Comments 0
You need to be logged in to leave comments. Login now