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

  • Committer: Martin Pool
  • Date: 2007-08-21 03:40:50 UTC
  • mfrom: (2736 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2737.
  • Revision ID: mbp@sourcefrog.net-20070821034050-gcppw53kbcm2gwgd
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
381
381
        tree_a = self.make_branch_and_tree('a')
382
382
        branch_a = tree_a.branch
383
383
        checkout_b = branch_a.create_checkout('b')
384
 
        self.assertEqual(None, checkout_b.last_revision())
 
384
        self.assertEqual('null:', checkout_b.last_revision())
385
385
        checkout_b.commit('rev1', rev_id='rev1')
386
386
        self.assertEqual('rev1', branch_a.last_revision())
387
387
        self.assertNotEqual(checkout_b.branch.base, branch_a.base)