~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2007-06-28 23:18:09 UTC
  • mfrom: (2562 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2566.
  • Revision ID: john@arbash-meinel.com-20070628231809-pqbt7puoqj8bl07b
[merge] bzr.dev 2562

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        return tree
35
35
 
36
36
    def _check_revision_history(self, location=''):
37
 
        rh = self.capture('revision-history ' + location)
 
37
        rh = self.run_bzr(['revision-history', location])[0]
38
38
        self.assertEqual(rh, 'revision_1\nrevision_2\nrevision_3\n')
39
39
 
40
40
    def test_revision_history(self):