/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/blackbox/test_too_much.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
# XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
31
31
# Note: Please don't add new tests here, it's too big and bulky.  Instead add
32
 
# them into small suites in brzlib.tests.blackbox.test_FOO for the particular
 
32
# them into small suites in breezy.tests.blackbox.test_FOO for the particular
33
33
# UI command/aspect that is being tested.
34
34
 
35
35
 
38
38
import re
39
39
import sys
40
40
 
41
 
import brzlib
42
 
from brzlib import (
 
41
import breezy
 
42
from breezy import (
43
43
    osutils,
44
44
    )
45
 
from brzlib.branch import Branch
46
 
from brzlib.errors import BzrCommandError
47
 
from brzlib.tests.http_utils import TestCaseWithWebserver
48
 
from brzlib.tests.test_sftp_transport import TestCaseWithSFTPServer
49
 
from brzlib.tests import TestCaseWithTransport
50
 
from brzlib.workingtree import WorkingTree
 
45
from breezy.branch import Branch
 
46
from breezy.errors import BzrCommandError
 
47
from breezy.tests.http_utils import TestCaseWithWebserver
 
48
from breezy.tests.test_sftp_transport import TestCaseWithSFTPServer
 
49
from breezy.tests import TestCaseWithTransport
 
50
from breezy.workingtree import WorkingTree
51
51
 
52
52
 
53
53
class TestCommands(TestCaseWithTransport):