Fix accidental misnaming from sed 's/pubring/keyring/'.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-13 09:14:42 +00:00
parent e462cf42ed
commit 1588822f02
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class GPGTestCase(unittest.TestCase):
shutil.rmtree(hd)
self.homedir = hd
self.gpg = gnupg.GPG(homedir=hd, binary='gpg')
self.keyring = os.path.join(self.homedir, 'keyring.gpg')
self.keyring = os.path.join(self.homedir, 'pubring.gpg')
self.secring = os.path.join(self.homedir, 'secring.gpg')
def tearDown(self):