/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to tests/test_commit.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-30 21:45:54 UTC
  • Revision ID: jelmer@samba.org-20111130214554-5kfx0b5y7t5zh033
Extend branch preferences, show location widget.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
except ImportError:
35
35
    from bzrlib.util import bencode
36
36
 
37
 
from bzrlib.plugins.gtk import commit
 
37
from bzrlib.plugins.gtk import (
 
38
    commit,
 
39
    commitmsgs,
 
40
    )
38
41
 
39
42
 
40
43
# TODO: All we need is basic ancestry code to test this, we shouldn't need a
1128
1131
        super(TestSavedCommitMessages, self).setUp()
1129
1132
        # Install our hook
1130
1133
        branch.Branch.hooks.install_named_hook(
1131
 
            'post_uncommit', commit.save_commit_messages, None)
 
1134
            'post_uncommit', commitmsgs.save_commit_messages, None)
1132
1135
 
1133
1136
    def _get_file_info_dict(self, rank):
1134
1137
        file_info = [dict(path='a', file_id='a-id', message='a msg %d' % rank),