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

  • Committer: Martin Pool
  • Date: 2010-02-25 05:46:32 UTC
  • mto: (4634.139.3 2.0)
  • mto: This revision was merged to the branch mainline in revision 5118.
  • Revision ID: mbp@sourcefrog.net-20100225054632-3w7a7nqdk2ixfuce
Rename squelched to suppressed

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
        err = StringIO()
323
323
        out = StringIO()
324
324
        ui = tests.TextUIFactory(stdin=None, stdout=out, stderr=err)
325
 
        ui.squelched_warnings.add('cross_format_fetch')
 
325
        ui.suppressed_warnings.add('cross_format_fetch')
326
326
        ui.show_user_warning('cross_format_fetch', from_format=RepositoryFormat2a(),
327
327
            to_format=remote_fmt)
328
328
        self.assertEquals('', out.getvalue())