summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-10-10 16:05:28 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2012-10-10 16:05:28 +0200
commit4755c72601c11b800650f942f855cee286c50356 (patch)
tree202558cf7acc16137982a393565a72d8267a3b33 /tests
parent1f299c6eef3e5b6e2cd74c27dfd33de41e08f734 (diff)
downloadpython-apt-4755c72601c11b800650f942f855cee286c50356.tar.gz
cherry pick robustness fixes for keyid (allow leading 0x, allow lowercase)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_auth.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py
index 4e37b3d3..d742a471 100644
--- a/tests/test_auth.py
+++ b/tests/test_auth.py
@@ -207,7 +207,8 @@ class TestAuthKeys(unittest.TestCase):
self.addCleanup(self._stop_keyserver)
apt.auth.add_key_from_keyserver(
- "A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553", "hkp://localhost:19191")
+ "0xa1bD8E9D78F7FE5C3E65D8AF8B48AD6246925553",
+ "hkp://localhost:19191")
ret = apt.auth.list_keys()
self.assertEqual(len(ret), 1)