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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-22 00:56:52 UTC
  • mfrom: (6621.2.26 py3_pokes)
  • Revision ID: jelmer@jelmer.uk-20170522005652-yjahcr9hwmjkno7n
Merge Python3 porting work ('py3 pokes')

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import os
21
21
import time
22
22
 
23
 
from breezy import (
 
23
from .. import (
24
24
    dirstate,
25
25
    errors,
26
26
    osutils,
27
27
    tests,
28
28
    _dirstate_helpers_py,
29
29
    )
30
 
from breezy.tests import (
 
30
from . import (
31
31
    test_dirstate,
32
32
    )
33
 
from breezy.tests.test_osutils import dir_reader_scenarios
34
 
from breezy.tests.scenarios import (
 
33
from .test_osutils import dir_reader_scenarios
 
34
from .scenarios import (
35
35
    load_tests_apply_scenarios,
36
36
    multiply_scenarios,
37
37
    )
38
 
from breezy.tests import (
 
38
from . import (
39
39
    features,
40
40
    )
41
41