~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_nonascii.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-12-22 18:07:19 UTC
  • mfrom: (2204.3.4 selftest.fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20061222180719-31fc1e7cbaf32a4b
(bialix) several small fixes to selftest

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
        # route, and maintains the right files
124
124
        files = [a_circle_c+'.1', a_dots_c+'.2', z_umlat_c+'.3']
125
125
        try:
126
 
            self.build_tree(files)
 
126
            self.build_tree(files, line_endings='native')
127
127
        except UnicodeError:
128
128
            raise TestSkipped("filesystem cannot create unicode files")
129
129
 
144
144
            finally:
145
145
                f.close()
146
146
            self.assertEqual(shouldbe, actual, 
147
 
                             'contents of %s is incorrect: %r != %r'
 
147
                             'contents of %r is incorrect: %r != %r'
148
148
                             % (path, shouldbe, actual))
149
149
 
150
150
    def test_access_non_normalized(self):