~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_exceptions.py

Tweak font settings in stylesheet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006 by Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
48
48
        try:
49
49
            os.mkdir('foo')
50
50
            bzrdir.BzrDirFormat5().initialize('foo')
51
 
            out, err = self.run_bzr("status foo")
52
 
            self.assertContainsRe(self._get_log(keep_log_file=True),
53
 
                                  "bzr upgrade")
 
51
            out, err = self.run_bzr("status", "foo")
 
52
            self.assertContainsRe(self._get_log(), "bzr upgrade")
54
53
        finally:
55
54
            repository._deprecation_warning_done = True
56
55