Fix a bug in two unittests caused by a method not having been renamed.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-11 08:53:12 +00:00
parent ed2bc4d882
commit 6c87679e7e
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 2 additions and 2 deletions

View File

@ -421,7 +421,7 @@ class GPGTestCase(unittest.TestCase):
def test_import_and_export(self):
"""Test that key import and export works."""
logger.debug("test_import_and_export begins")
self.test_list_keys_initial()
self.test_list_keys_initial_public()
gpg = self.gpg
result = gpg.import_keys(KEYS_TO_IMPORT)
self.assertEqual(result.summary(), '2 imported')
@ -450,7 +450,7 @@ class GPGTestCase(unittest.TestCase):
def test_import_only(self):
"""Test that key import works."""
logger.debug("test_import_only begins")
self.test_list_keys_initial()
self.test_list_keys_initial_public()
self.gpg.import_keys(KEYS_TO_IMPORT)
public_keys = self.gpg.list_keys()
self.assertTrue(is_list_with_len(public_keys, 2),