/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/test_generate_docs.py

  • Committer: Jelmer Vernooij
  • Date: 2018-05-06 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180506114854-h4qd9ojaqy8wxjsd
Move .mailmap to root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
import breezy.commands
25
25
from ..sixish import (
26
 
    StringIO,
 
26
    BytesIO,
27
27
    )
28
28
from . import TestCase
29
29
 
37
37
 
38
38
    def setUp(self):
39
39
        super(TestGenerateDocs, self).setUp()
40
 
        self.sio = StringIO()
 
40
        self.sio = BytesIO()
41
41
        self.options = Options()
42
42
        self.options.brz_name = 'brz'
43
43
        breezy.commands.install_bzr_command_hooks()