/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/tree_implementations/test_inv.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-05 00:16:48 UTC
  • mfrom: (2776.1.6 commit)
  • Revision ID: pqm@pqm.ubuntu.com-20070905001648-0iigag4tq1u8mywn
(robertc) Deprecated find_previous_heads and add Graph.heads detangling some of the inventory related commit code. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from bzrlib.osutils import (
26
26
    has_symlinks,
27
27
    )
 
28
from bzrlib.symbol_versioning import zero_ninetyone
28
29
from bzrlib.tests import TestSkipped
29
30
from bzrlib.tests.tree_implementations import TestCaseWithTree
30
31
from bzrlib.uncommit import uncommit
177
178
            self.branch.repository.get_transaction())
178
179
        
179
180
    def get_previous_heads(self, inventories):
180
 
        return self.file_active.find_previous_heads(
181
 
            inventories, 
 
181
        return self.applyDeprecated(zero_ninetyone,
 
182
            self.file_active.find_previous_heads,
 
183
            inventories,
182
184
            self.branch.repository.weave_store,
183
185
            self.branch.repository.get_transaction())
184
186