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

  • Committer: Aaron Bentley
  • Date: 2008-06-06 16:40:46 UTC
  • mfrom: (3482 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3483.
  • Revision ID: aaron@aaronbentley.com-20080606164046-ghbxplxuhtpcb9iz
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
        self.failIfExists('checkout/file-3')
131
131
        self.failUnlessExists('checkout/file-4')
132
132
        # Check that the checkout is a true mirror of the bound branch
133
 
        missing_in_checkout = checkout.branch.missing_revisions(to_branch)
134
 
        self.assertEqual([], missing_in_checkout)
135
 
        missing_in_remote = to_branch.missing_revisions(checkout.branch)
136
 
        self.assertEqual([], missing_in_remote)
 
133
        self.assertEqual(to_branch.last_revision_info(),
 
134
                         checkout.branch.last_revision_info())