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

  • Committer: Breezy landing bot
  • Author(s): Gustav Hartvigsson
  • Date: 2021-01-10 18:46:30 UTC
  • mfrom: (7526.1.1 brz-removed-api-doc)
  • mto: This revision was merged to the branch mainline in revision 7532.
  • Revision ID: breezy.the.bot@gmail.com-20210110184630-dxu0g9dqq020uiw6
Drop documentation for removed API API.

Merged from https://code.launchpad.net/~gustav-hartvigsson/brz/removed-api-doc/+merge/396033

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    TestCaseWithTransport,
29
29
    TestSkipped,
30
30
    )
31
 
from ...bzr.bzrdir import BzrDir
 
31
from ...controldir import ControlDir
32
32
 
33
33
 
34
34
class BisectTestCase(TestCaseWithTransport):
72
72
                                                     'test_file_append')))
73
73
        self.tree.commit(message="add test files")
74
74
 
75
 
        BzrDir.open(".").sprout("../temp-clone")
76
 
        clone_bzrdir = BzrDir.open("../temp-clone")
77
 
        clone_tree = clone_bzrdir.open_workingtree()
 
75
        ControlDir.open(".").sprout("../temp-clone")
 
76
        clone_controldir = ControlDir.open("../temp-clone")
 
77
        clone_tree = clone_controldir.open_workingtree()
78
78
        for content in ["one dot one", "one dot two", "one dot three"]:
79
79
            test_file = open("../temp-clone/test_file", "w")
80
80
            test_file.write(content)