/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: Martin Pool
  • Date: 2011-04-14 07:53:38 UTC
  • mto: This revision was merged to the branch mainline in revision 5788.
  • Revision ID: mbp@sourcefrog.net-20110414075338-0cwknb7zokfouzwj
Stop using failIf, failUnless, etc

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