/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 bzrlib/tests/test_commit.py

  • Committer: Ian Clatworthy
  • Date: 2007-09-03 13:17:52 UTC
  • mto: (2819.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2820.
  • Revision ID: ian.clatworthy@internode.on.net-20070903131752-va6227ax1vj8b9pb
Make commit less verbose by default

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