##// END OF EJS Templates
test-url: move from dict() construction to {} literals...
Augie Fackler -
r20685:56b1f39d default
parent child Browse files
Show More
@@ -5,7 +5,7 b' def check(a, b):'
5 print (a, b)
5 print (a, b)
6
6
7 def cert(cn):
7 def cert(cn):
8 return dict(subject=((('commonName', cn),),))
8 return {'subject': ((('commonName', cn),),)}
9
9
10 from mercurial.sslutil import _verifycert
10 from mercurial.sslutil import _verifycert
11
11
General Comments 0
You need to be logged in to leave comments. Login now