/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_hooks.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:
16
16
 
17
17
"""Tests for the core Hooks logic."""
18
18
 
19
 
from breezy import (
 
19
from .. import (
20
20
    branch,
21
21
    errors,
22
22
    hooks as _mod_hooks,
23
23
    pyutils,
24
24
    tests,
25
25
    )
26
 
from breezy.hooks import (
 
26
from ..hooks import (
27
27
    HookPoint,
28
28
    Hooks,
29
29
    install_lazy_named_hook,
30
30
    known_hooks,
31
31
    known_hooks_key_to_object,
32
32
    )
33
 
from breezy.symbol_versioning import (
 
33
from ..symbol_versioning import (
34
34
    deprecated_in,
35
35
    )
36
36