/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: 2020-03-22 01:35:14 UTC
  • mfrom: (7490.7.6 work)
  • mto: This revision was merged to the branch mainline in revision 7499.
  • Revision ID: jelmer@jelmer.uk-20200322013514-7vw1ntwho04rcuj3
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
and produce non-empty output.
21
21
"""
22
22
 
 
23
from io import StringIO
23
24
 
24
25
import breezy.commands
25
 
from ..sixish import (
26
 
    BytesIO,
27
 
    )
28
26
from . import TestCase
29
27
 
30
28
 
37
35
 
38
36
    def setUp(self):
39
37
        super(TestGenerateDocs, self).setUp()
40
 
        self.sio = BytesIO()
 
38
        self.sio = StringIO()
41
39
        self.options = Options()
42
40
        self.options.brz_name = 'brz'
43
41
        breezy.commands.install_bzr_command_hooks()