/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_log.py

  • Committer: Ian Clatworthy
  • Date: 2009-03-26 05:41:59 UTC
  • mto: (4205.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4206.
  • Revision ID: ian.clatworthy@canonical.com-20090326054159-hbcy5hc1kudyx9t4
apply review tweaks & update help

Show diffs side-by-side

added added

removed removed

Lines of Context:
1022
1022
        out, err = self.run_bzr('log --line -n0 %s' % (paths_str,))
1023
1023
        self.assertEqual('', err)
1024
1024
        revnos = [s.split(':', 1)[0].lstrip() for s in out.splitlines()]
1025
 
        self.assertEqual(revnos, expected_revnos)
 
1025
        self.assertEqual(expected_revnos, revnos)
1026
1026
 
1027
1027
    def test_log_files(self):
1028
1028
        """The log for multiple file should only list revs for those files"""