/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 bzrlib/tests/branch_implementations/test_create_checkout.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-29 08:48:51 UTC
  • mfrom: (3044.1.1 164476-default-format)
  • Revision ID: pqm@pqm.ubuntu.com-20071129084851-xoj1c3u42mxzy5bq
Fix up calls to TestCase.build_tree passing a string rather than a list

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    def test_create_checkout_exists(self):
61
61
        """We shouldn't fail if the directory already exists."""
62
62
        tree1 = self.make_branch_and_tree('base')
63
 
        self.build_tree('checkout')
 
63
        self.build_tree(['checkout/'])
64
64
        tree2 = tree1.branch.create_checkout('checkout', lightweight=True)