aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-07-18 15:29:26 -0400
committerW. Trevor King <wking@drexel.edu>2009-07-18 15:29:26 -0400
commitfa18ec73f4b2b3bba47186570b05f2adb8ada8ab (patch)
treeca566bbae7b5a3513cca4c8817533605ba547ddc /interfaces
parent8feacb745c3093bf89caf14899ea82edb637d3d4 (diff)
downloadbugseverywhere-fa18ec73f4b2b3bba47186570b05f2adb8ada8ab.tar.gz
Oops, forgot to reset from/to_addr in send_pgp_mime.py unittests
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/email/interactive/send_pgp_mime.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/interfaces/email/interactive/send_pgp_mime.py b/interfaces/email/interactive/send_pgp_mime.py
index 0294413..7a41550 100644
--- a/interfaces/email/interactive/send_pgp_mime.py
+++ b/interfaces/email/interactive/send_pgp_mime.py
@@ -246,8 +246,8 @@ def target_emails(msg):
class EncryptedMessageFactory (object):
"""
See http://www.ietf.org/rfc/rfc3156.txt for specification details.
- >>> from_addr = "wking@drexel.edu"
- >>> to_addr = "wking@drexel.edu"
+ >>> from_addr = "me@big.edu"
+ >>> to_addr = "you@you.edu"
>>> header = header_from_text('\\n'.join(['From: %s'%from_addr,'To: %s'%to_addr,'Subject: testing']))
>>> source_email(header) == from_addr
True