~cjwatson/brz-svn/fix-http-probe

« back to all changes in this revision

Viewing changes to tests/test_commit.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-03 09:16:45 UTC
  • Revision ID: jelmer@jelmer.uk-20200203091645-q0f1yq77zkr1s3cz
More Python3 / formatting / breezy fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
from breezy.trace import mutter
52
52
from breezy.workingtree import WorkingTree
53
53
 
54
 
from breezy.plugins.svn.commit import (
 
54
from ..commit import (
55
55
    file_editor_send_prop_changes,
56
56
    set_svn_revprops,
57
57
    _revision_id_to_svk_feature,
58
58
    )
59
 
from breezy.plugins.svn.errors import (
 
59
from ..errors import (
60
60
    RevpropChangeFailed,
61
61
    )
62
 
from breezy.plugins.svn.mapping import mapping_registry
63
 
from breezy.plugins.svn.tests import SubversionTestCase
 
62
from ..mapping import mapping_registry
 
63
from . import SubversionTestCase
64
64
 
65
65
 
66
66
class TestNativeCommit(SubversionTestCase):