Browse Source

[master] fix unit test for changed error message

Jelte Jansen 14 years ago
parent
commit
52cc6e6c2a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/cfgmgr/plugins/tests/tsig_keys_test.py

+ 1 - 1
src/bin/cfgmgr/plugins/tests/tsig_keys_test.py

@@ -86,7 +86,7 @@ class TSigKeysTest(unittest.TestCase):
         self.assertEqual("TSIG: Invalid TSIG key string: invalid.key",
                          tsig_keys.check({'keys': ['invalid.key']}))
         self.assertEqual(
-            "TSIG: attempt to decode a value not in base64 char set",
+            "TSIG: Unexpected end of input in BASE decoder",
             tsig_keys.check({'keys': ['invalid.key:123']}))
 
     def test_bad_format(self):