~jelmer/brz/fix-c-extensions

« back to all changes in this revision

Viewing changes to breezy/tests/ui_testing.py

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from .. import (
22
22
    ui,
23
23
)
 
24
from ..ui import text as ui_text
24
25
from ..sixish import (
25
26
    text_type,
26
27
)
48
49
        return True
49
50
 
50
51
 
51
 
class TextUIFactory(ui.text.TextUIFactory):
 
52
class TextUIFactory(ui_text.TextUIFactory):
52
53
 
53
54
    def __init__(self, stdin=None, stdout=None, stderr=None):
54
55
        if isinstance(stdin, bytes):