~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-23 15:47:59 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1512.
  • Revision ID: john@arbash-meinel.com-20051123154759-784e7805281e831c
I was stripping off too much of the name in --verbose mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        else:
88
88
            what = test.id()
89
89
            if what.startswith('bzrlib.tests.'):
90
 
                what = what[16:]
 
90
                what = what[13:]
91
91
            if len(what) > 70:
92
92
                what = '...' + what[-67:]
93
93