/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 breezy/plugins/git/tests/test_workingtree.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-05-21 21:16:48 UTC
  • mfrom: (6973.1.1 git-cleanup)
  • Revision ID: breezy.the.bot@gmail.com-20180521211648-d3emlyz0qi3gwxh5
Make InterIndexGitTree suitable for use with MemoryGitTree.

Merged from https://code.launchpad.net/~jelmer/brz/inter-memorygittree/+merge/346426

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    )
30
30
 
31
31
from .... import conflicts as _mod_conflicts
 
32
from ..tree import (
 
33
    changes_between_git_tree_and_working_copy,
 
34
    )
32
35
from ..workingtree import (
33
36
    FLAG_STAGEMASK,
34
 
    changes_between_git_tree_and_working_copy,
35
37
    )
36
38
from ....tests import TestCaseWithTransport
37
39