aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtest_archivemail4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_archivemail b/test_archivemail
index 35cef4d..3e9bf88 100755
--- a/test_archivemail
+++ b/test_archivemail
@@ -421,7 +421,7 @@ class TestOptionParser(unittest.TestCase):
for suffix in ("_static_", "_%B_%Y", "-%Y-%m-%d"):
archivemail.options.parse_args(["--suffix="+suffix], "")
self.assertEqual(archivemail.options.archive_suffix, suffix)
- archivemail.options.suffix = None
+ archivemail.options.archive_suffix = None
archivemail.options.parse_args(["-s", suffix], "")
self.assertEqual(archivemail.options.archive_suffix, suffix)
@@ -430,7 +430,7 @@ class TestOptionParser(unittest.TestCase):
for prefix in ("_static_", "_%B_%Y", "-%Y-%m-%d"):
archivemail.options.parse_args(["--prefix="+prefix], "")
self.assertEqual(archivemail.options.archive_prefix, prefix)
- archivemail.options.prefix = None
+ archivemail.options.archive_prefix = None
archivemail.options.parse_args(["-p", prefix], "")
self.assertEqual(archivemail.options.archive_prefix, prefix)