Fixed rogue quotes

This commit is contained in:
Brad Warren 2016-01-06 15:34:42 -05:00
parent 1cdff156c9
commit 51bc1311a2

View file

@ -112,9 +112,9 @@ class PyOpenSSLCertOrReqSANTest(unittest.TestCase):
def test_csr_six_sans(self):
self.assertEqual(self._call_csr('csr-6sans.pem'),
["example.com", "example.org", "example.net",
"example.info", "subdomain.example.com",
"other.subdomain.example.com"])
['example.com', 'example.org', 'example.net',
'example.info', 'subdomain.example.com',
'other.subdomain.example.com'])
def test_csr_hundred_sans(self):
self.assertEqual(self._call_csr('csr-100sans.pem'),
@ -125,5 +125,5 @@ class PyOpenSSLCertOrReqSANTest(unittest.TestCase):
self._get_idn_names())
if __name__ == "__main__":
if __name__ == '__main__':
unittest.main() # pragma: no cover