~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_commit.py

  • Committer: Aaron Bentley
  • Date: 2007-09-17 12:46:56 UTC
  • mfrom: (2825 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2826.
  • Revision ID: abentley@panoramicfeedback.com-20070917124656-j3hhxhx9igy11mfc
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    def renamed(self, change, old_path, new_path):
71
71
        self.calls.append(('renamed', change, old_path, new_path))
72
72
 
 
73
    def is_verbose(self):
 
74
        return True
 
75
 
73
76
 
74
77
class TestCommit(TestCaseWithTransport):
75
78