/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_delta.py

  • Committer: Arnaud Jeansen
  • Date: 2010-03-30 17:40:31 UTC
  • mto: This revision was merged to the branch mainline in revision 5126.
  • Revision ID: arnaud.jeansen@gmail.com-20100330174031-vhh00cflhkez0rix
Correct last delta.show() call in test_delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
 
222
222
    def show_string(self, delta, *args,  **kwargs):
223
223
        to_file = StringIO()
224
 
        delta.show(to_file, *args, **kwargs)
 
224
        _mod_delta.report_delta(to_file, delta, *args, **kwargs)
225
225
        return to_file.getvalue()
226
226
 
227
227
    def test_kind_change(self):