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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-31 18:27:04 UTC
  • mfrom: (1948.4.36 revspec-errors-55420)
  • Revision ID: pqm@pqm.ubuntu.com-20060831182704-2de4cd234a448ed1
(jam) improve revision spec errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
        wt.add('bye.c')
103
103
        wt.commit('Test message')
104
104
 
105
 
        revs = [RevisionSpec(0)]
 
105
        revs = [RevisionSpec.from_string('0')]
106
106
        self.assertStatus([
107
107
                'added:\n',
108
108
                '  bye.c\n',
115
115
        wt.add('more.c')
116
116
        wt.commit('Another test message')
117
117
        
118
 
        revs.append(RevisionSpec(1))
 
118
        revs.append(RevisionSpec.from_string('1'))
119
119
        self.assertStatus([
120
120
                'added:\n',
121
121
                '  bye.c\n',