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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-13 05:55:15 UTC
  • mfrom: (2348.1.2 mz.symlinks)
  • Revision ID: pqm@pqm.ubuntu.com-20070313055515-823e15af73d49270
(marienz,r=john,r=mbp) fix error committing merge with symlinks in dirstate

Show diffs side-by-side

added added

removed removed

Lines of Context:
993
993
        """
994
994
        # TODO: Perhaps this should keep running cleanups even if 
995
995
        # one of them fails?
996
 
        for cleanup_fn in reversed(self._cleanups):
997
 
            cleanup_fn()
 
996
 
 
997
        # Actually pop the cleanups from the list so tearDown running
 
998
        # twice is safe (this happens for skipped tests).
 
999
        while self._cleanups:
 
1000
            self._cleanups.pop()()
998
1001
 
999
1002
    def log(self, *args):
1000
1003
        mutter(*args)