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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import os
21
21
import sys
22
22
 
23
 
from brzlib import (
 
23
from breezy import (
24
24
    commit,
25
25
    config,
26
26
    errors,
28
28
    osutils,
29
29
    trace,
30
30
    )
31
 
from brzlib.msgeditor import (
 
31
from breezy.msgeditor import (
32
32
    make_commit_message_template_encoded,
33
33
    edit_commit_message_encoded
34
34
)
35
 
from brzlib.tests import (
 
35
from breezy.tests import (
36
36
    features,
37
37
    TestCaseInTempDir,
38
38
    TestCaseWithTransport,
42
42
    probe_bad_non_ascii,
43
43
    split_suite_by_re,
44
44
    )
45
 
from brzlib.tests.EncodingAdapter import encoding_scenarios
46
 
from brzlib.trace import mutter
 
45
from breezy.tests.EncodingAdapter import encoding_scenarios
 
46
from breezy.trace import mutter
47
47
 
48
48
 
49
49
def load_tests(standard_tests, module, loader):