/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: Vincent Ladeuil
  • Date: 2010-03-24 14:15:01 UTC
  • mto: (5107.2.1 integration2)
  • mto: This revision was merged to the branch mainline in revision 5109.
  • Revision ID: v.ladeuil+lp@free.fr-20100324141501-04ln5zfqtsgzaaxl
Use single quotes so that no test need to be updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
 
293
293
    def test_log_nonexistent_revno(self):
294
294
        self.make_minimal_branch()
295
 
        self.run_bzr_error(["bzr: ERROR: Requested revision: ['\"]1234['\"] "
 
295
        self.run_bzr_error(["bzr: ERROR: Requested revision: '1234' "
296
296
                            "does not exist in branch:"],
297
297
                           ['log', '-r1234'])
298
298
 
299
299
    def test_log_nonexistent_dotted_revno(self):
300
300
        self.make_minimal_branch()
301
 
        self.run_bzr_error(["bzr: ERROR: Requested revision: ['\"]123.123['\"] "
 
301
        self.run_bzr_error(["bzr: ERROR: Requested revision: '123.123' "
302
302
                            "does not exist in branch:"],
303
303
                           ['log',  '-r123.123'])
304
304
 
305
305
    def test_log_change_nonexistent_revno(self):
306
306
        self.make_minimal_branch()
307
 
        self.run_bzr_error(["bzr: ERROR: Requested revision: ['\"]1234['\"] "
 
307
        self.run_bzr_error(["bzr: ERROR: Requested revision: '1234' "
308
308
                            "does not exist in branch:"],
309
309
                           ['log',  '-c1234'])
310
310
 
311
311
    def test_log_change_nonexistent_dotted_revno(self):
312
312
        self.make_minimal_branch()
313
 
        self.run_bzr_error(["bzr: ERROR: Requested revision: ['\"]123.123['\"] "
 
313
        self.run_bzr_error(["bzr: ERROR: Requested revision: '123.123' "
314
314
                            "does not exist in branch:"],
315
315
                           ['log', '-c123.123'])
316
316