/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/blackbox/test_exceptions.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-21 16:03:07 UTC
  • mfrom: (1927.3.5 throw_log_away)
  • Revision ID: pqm@pqm.ubuntu.com-20060921160307-6081481c9a444cce
(cfbolz) Throw away disk logfile if not used

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
            os.mkdir('foo')
50
50
            bzrdir.BzrDirFormat5().initialize('foo')
51
51
            out, err = self.run_bzr("status", "foo")
52
 
            self.assertContainsRe(self._get_log(), "bzr upgrade")
 
52
            self.assertContainsRe(self._get_log(keep_log_file=True),
 
53
                                  "bzr upgrade")
53
54
        finally:
54
55
            repository._deprecation_warning_done = True
55
56