~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Andrew Bennetts
  • Date: 2008-08-07 00:25:38 UTC
  • mfrom: (3612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3613.
  • Revision ID: andrew.bennetts@canonical.com-20080807002538-mtl1fcgy2fdabha4
Merge from bzr.dev.

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)