~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Christophe Troestler
  • Date: 2008-07-19 15:00:27 UTC
  • mto: This revision was merged to the branch mainline in revision 3582.
  • Revision ID: christophe.troestler@umh.ac.be-20080719150027-tbdt3dm1pakina0a
(trivial) Corrected typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
class TestRunBzrSubprocess(TestCaseWithTransport):
258
258
 
259
259
    def test_run_bzr_subprocess(self):
260
 
        """The run_bzr_helper_external comand behaves nicely."""
 
260
        """The run_bzr_helper_external command behaves nicely."""
261
261
        result = self.run_bzr_subprocess('--version')
262
262
        result = self.run_bzr_subprocess(['--version'])
263
263
        result = self.run_bzr_subprocess('--version', retcode=None)