~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-26 22:29:59 UTC
  • mfrom: (4651.1.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090826222959-c50xt4pb58g4lv1d
(vila) Catch up fix for #347649

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
 
217
217
 
218
218
class TestMisc(TestCICPBase):
 
219
 
219
220
    def test_status(self):
220
221
        wt = self._make_mixed_case_tree()
221
222
        self.run_bzr('add')
222
223
 
223
 
        self.check_output('added:\n  CamelCaseParent/CamelCase\n  lowercaseparent/lowercase\n',
224
 
                          'status camelcaseparent/camelcase LOWERCASEPARENT/LOWERCASE')
 
224
        self.check_output(
 
225
            """added:
 
226
  CamelCaseParent/
 
227
  CamelCaseParent/CamelCase
 
228
  lowercaseparent/
 
229
  lowercaseparent/lowercase
 
230
""",
 
231
            'status camelcaseparent/camelcase LOWERCASEPARENT/LOWERCASE')
225
232
 
226
233
    def test_ci(self):
227
234
        wt = self._make_mixed_case_tree()