Browse Source

Merge branch 'travis-ci' into HEAD

Daniel Roesler 8 years ago
parent
commit
76d1c06f97
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/test_module.py

+ 2 - 2
tests/test_module.py

@@ -110,7 +110,7 @@ class TestModule(unittest.TestCase):
         except Exception as e:
             result = e
         self.assertIsInstance(result, ValueError)
-        self.assertIn("Key too small", result.args[0])
+        self.assertIn("key too small", result.args[0])
 
     def test_invalid_domain(self):
         """ Let's Encrypt rejects invalid domains """
@@ -152,5 +152,5 @@ class TestModule(unittest.TestCase):
         except Exception as e:
             result = e
         self.assertIsInstance(result, ValueError)
-        self.assertIn("Certificate public key must be different than account key", result.args[0])
+        self.assertIn("certificate public key must be different than account key", result.args[0])