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

  • Committer: Jelmer Vernooij
  • Date: 2017-06-08 23:30:31 UTC
  • mto: This revision was merged to the branch mainline in revision 6690.
  • Revision ID: jelmer@jelmer.uk-20170608233031-3qavls2o7a1pqllj
Update imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import zlib
22
22
 
23
23
from .. import (
24
 
    btree_index,
25
24
    errors,
26
25
    fifo_cache,
27
26
    lru_cache,
29
28
    tests,
30
29
    transport,
31
30
    )
 
31
from ..bzr import (
 
32
    btree_index,
 
33
    )
32
34
from ..tests import (
33
35
    TestCaseWithTransport,
34
36
    scenarios,
42
44
 
43
45
 
44
46
def btreeparser_scenarios():
45
 
    import breezy._btree_serializer_py as py_module
 
47
    import breezy.bzr._btree_serializer_py as py_module
46
48
    scenarios = [('python', {'parse_btree': py_module})]
47
49
    if compiled_btreeparser_feature.available():
48
50
        scenarios.append(('C',