/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/blackbox/test_help.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-17 09:43:24 UTC
  • mfrom: (7045.1.9 python3-o)
  • Revision ID: breezy.the.bot@gmail.com-20180717094324-sejdvmx3kha2zeq8
Fix another ~500 tests on Python 3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-o/+merge/349632

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        out, err = self.run_bzr('help repositories')
79
79
        from breezy.help_topics import help_as_plain_text, _repositories
80
80
        expected = help_as_plain_text(_repositories)
81
 
        self.assertEqual(expected.encode('utf-8'), out)
 
81
        self.assertEqual(expected, out)
82
82
 
83
83
    def test_help_working_trees(self):
84
84
        """Smoke test for 'brz help working-trees'"""