aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/runners
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman_pgp/runners')
-rw-r--r--src/mailman_pgp/runners/tests/test_incoming.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman_pgp/runners/tests/test_incoming.py b/src/mailman_pgp/runners/tests/test_incoming.py
index e3ceb67..84a53cc 100644
--- a/src/mailman_pgp/runners/tests/test_incoming.py
+++ b/src/mailman_pgp/runners/tests/test_incoming.py
@@ -50,14 +50,14 @@ class TestIncoming(TestCase):
self.pgp_list = PGPMailingList.for_list(self.mlist)
self.pgp_list.generate_key(True)
- sender_key = load_key('data/rsa_1024.pub.asc')
+ sender_key = load_key('rsa_1024.pub.asc')
with transaction() as t:
self.pgp_sender = PGPAddress(self.sender.preferred_address)
self.pgp_sender.key = sender_key
t.add(self.pgp_sender)
- self.msg_clear = load_message('data/clear.eml')
- self.msg_inline_encrypted = load_message('data/inline_encrypted.eml')
+ self.msg_clear = load_message('clear.eml')
+ self.msg_inline_encrypted = load_message('inline_encrypted.eml')
self.runner = make_testable_runner(IncomingRunner, 'in')