/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/tests/test_transform.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-08-23 01:15:41 UTC
  • mfrom: (7520.1.4 merge-3.1)
  • Revision ID: breezy.the.bot@gmail.com-20200823011541-nv0oh7nzaganx2qy
Merge lp:brz/3.1.

Merged from https://code.launchpad.net/~jelmer/brz/merge-3.1/+merge/389690

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
from ..bzr import (
37
37
    generate_ids,
38
38
    )
39
 
from ..conflicts import (
 
39
from ..bzr.conflicts import (
40
40
    DeletingParent,
41
41
    DuplicateEntry,
42
42
    DuplicateID,
72
72
from ..transform import (
73
73
    build_tree,
74
74
    create_from_tree,
75
 
    cook_conflicts,
76
75
    _FileMover,
77
76
    FinalPaths,
78
77
    resolve_conflicts,
1414
1413
        tt.delete_contents(dir_tid)
1415
1414
        tt.unversion_file(dir_tid)
1416
1415
        # There should be a conflict because dir still contain foo
1417
 
        raw_conflicts = tt.find_conflicts()
 
1416
        raw_conflicts = tt.find_raw_conflicts()
1418
1417
        self.assertLength(1, raw_conflicts)
1419
1418
        self.assertEqual(('missing parent', 'new-1'), raw_conflicts[0])
1420
1419
        return tt, orphan_tid