From e036fc86ecd5f1c8dfddb448fa6d93c398694536 Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Wed, 25 Oct 2017 14:20:17 +0200 Subject: [PATCH] Typo in a comment --- tests/src/python/test_qgsauthsystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/python/test_qgsauthsystem.py b/tests/src/python/test_qgsauthsystem.py index b760c150e021..8c4ab20567dd 100644 --- a/tests/src/python/test_qgsauthsystem.py +++ b/tests/src/python/test_qgsauthsystem.py @@ -642,7 +642,7 @@ def testChain(path): # and a wrong domain is set self.assertTrue(len(QgsAuthCertUtils.validateCertChain(QgsAuthCertUtils.certsFromFile(path), 'my.wrong.domain', True)) > 0) - # Test that a chain with an untrusted CA is not valid when the addRootCa argumentis true + # Test that a chain with an untrusted CA is valid when the addRootCa argumentis true # and a right domain is set self.assertTrue(len(QgsAuthCertUtils.validateCertChain(QgsAuthCertUtils.certsFromFile(path), 'localhost', True)) == 0)