diff options
| author | Barry Warsaw | 2014-12-13 10:55:57 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2014-12-13 10:55:57 -0500 |
| commit | 03731dd2d3aac0c9610c3b17d28f6821343fc8ed (patch) | |
| tree | 4b977f3225d355ec42daf312b93b7ab407c827ee /src/mailman/commands/tests/test_help.py | |
| parent | e3e8b9215abb85b44fce001311332c2f7772e4bd (diff) | |
| download | mailman-03731dd2d3aac0c9610c3b17d28f6821343fc8ed.tar.gz mailman-03731dd2d3aac0c9610c3b17d28f6821343fc8ed.tar.zst mailman-03731dd2d3aac0c9610c3b17d28f6821343fc8ed.zip | |
Diffstat (limited to 'src/mailman/commands/tests/test_help.py')
| -rw-r--r-- | src/mailman/commands/tests/test_help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/commands/tests/test_help.py b/src/mailman/commands/tests/test_help.py index 74eaae84e..ea8105d2a 100644 --- a/src/mailman/commands/tests/test_help.py +++ b/src/mailman/commands/tests/test_help.py @@ -51,7 +51,7 @@ class TestHelp(unittest.TestCase): ('more', 'than', 'one'), results) self.assertEqual(status, ContinueProcessing.no) - self.assertEqual(results.decode('utf-8'), """\ + self.assertEqual(str(results), """\ The results of your email command are provided below. help: too many arguments: more than one @@ -63,7 +63,7 @@ help: too many arguments: more than one status = self._help.process(self._mlist, Message(), {}, ('doesnotexist',), results) self.assertEqual(status, ContinueProcessing.no) - self.assertEqual(results.decode('utf-8'), """\ + self.assertEqual(str(results), """\ The results of your email command are provided below. help: no such command: doesnotexist |
