~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_create_checkout.py

resolve conflicts against trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
        tree2 = tree1.branch.create_checkout('checkout', revision_id='rev-1')
48
48
        self.assertEqual('rev-1', tree2.last_revision())
49
 
        self.failUnlessExists('checkout/a')
50
 
        self.failIfExists('checkout/b')
 
49
        self.assertPathExists('checkout/a')
 
50
        self.assertPathDoesNotExist('checkout/b')
51
51
 
52
52
    def test_create_lightweight_checkout(self):
53
53
        """We should be able to make a lightweight checkout."""