/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 23:11:39 UTC
  • mfrom: (6973.12.13 python3-k)
  • Revision ID: breezy.the.bot@gmail.com-20180630231139-tf5t5khh6bu5ntpm
Fix some more tests on python3.

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

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
 
    BytesIO,
 
26
    StringIO,
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 = BytesIO()
 
40
        self.sio = StringIO()
41
41
        self.options = Options()
42
42
        self.options.brz_name = 'brz'
43
43
        breezy.commands.install_bzr_command_hooks()