/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/per_workingtree/test_commit.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-06 14:53:40 UTC
  • mfrom: (5835 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5846.
  • Revision ID: john@arbash-meinel.com-20110506145340-whf3chalcyhar9ag
Merge bzr.dev 5835 in prep for release-notes updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
            # older format.
281
281
            return
282
282
        tree.commit('foo', rev_id='foo', local=True)
283
 
        self.failIf(master.repository.has_revision('foo'))
 
283
        self.assertFalse(master.repository.has_revision('foo'))
284
284
        self.assertEqual(_mod_revision.NULL_REVISION,
285
285
                         (_mod_revision.ensure_null(master.last_revision())))
286
286