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

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-06-14 22:54:55 UTC
  • mfrom: (6695.1.1 py3_ui)
  • Revision ID: breezy.the.bot@gmail.com-20170614225455-d6ww41q7gglrx3cb
Make remaining ui tests pass on Python 3

Merged from https://code.launchpad.net/~gz/brz/py3_ui/+merge/325701

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):